Skip to content

Commit

Permalink
Try more things
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Oct 25, 2024
1 parent c9302c0 commit e76a877
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
[target.wasm32-wasi]
runner = ["./scripts/wasmtime-wrapper.sh"]

[target.aarch64-unknown-linux-gnu]
linker = "aarch64-linux-gnu-gcc"

[target.armv7-unknown-linux-gnueabihf]
linker = "arm-linux-gnueabihf-gcc"

[target.'cfg(all(target_env = "msvc", target_os = "windows"))']
rustflags = ["-C", "target-feature=+crt-static"]
4 changes: 4 additions & 0 deletions dist-workspace.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ precise-builds = true
install-path = ["$MINIJINJA_CLI_INSTALL_DIR/bin", "~/.local/bin"]
# Whether to install an updater program
install-updater = false

[dist.dependencies.apt]
gcc-aarch64-linux-gnu = { version = '*', targets = ["aarch64-unknown-linux-gnu"] }
gcc-arm-linux-gnueabihf = { version = '*', targets = ["armv7-unknown-linux-gnueabihf"] }

0 comments on commit e76a877

Please sign in to comment.