diff options
author | iximeow <me@iximeow.net> | 2024-06-25 20:39:37 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2024-06-25 20:39:37 -0700 |
commit | 1b5cc1daf35e60a9f78158b261a443f2fffd2fcc (patch) | |
tree | 33701ebf7ecb88950b3ad1560a000b96d1ae2115 | |
parent | fa60b45005b9ab527b9b4ddf578834e65a528207 (diff) |
try building yaxpeax-arch for more arches
-rw-r--r-- | goodfile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -3,6 +3,9 @@ Build.dependencies({"git", "make", "rustc", "cargo"}) Step.start("crate") Step.push("build") Build.run({"cargo", "build"}) +-- and now that some code is conditional on target arch, at least try to build +-- for other architectures even if we might not be able to run on them. +Build.run({"cargo", "build", "--no-default-features", "--target", "wasm32-wasi"}) Step.advance("test") -- TODO: set `-D warnings` here and below... |