Skip to content
This repository was archived by the owner on Dec 15, 2025. It is now read-only.

Commit e2e60a9

Browse files
committed
...
1 parent 8f80b62 commit e2e60a9

5 files changed

Lines changed: 235 additions & 26 deletions

File tree

.cargo/config.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[target.aarch64-unknown-linux-musl]
2+
linker = "aarch64-linux-musl-gcc"

Cargo.lock

Lines changed: 169 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,5 @@ path = "src/lib.rs"
4545

4646
[[bin]]
4747
name = "zinit"
48-
path = "src/main.rs"
48+
path = "src/main.rs"
49+

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,9 @@ prepare:
88

99
release: prepare
1010
cargo build --release --target=x86_64-unknown-linux-musl
11+
12+
release-aarch64-musl: prepare-aarch64-musl
13+
cargo build --release --target=aarch64-unknown-linux-musl
14+
15+
prepare-aarch64-musl:
16+
rustup target add aarch64-unknown-linux-musl

0 commit comments

Comments
 (0)