Skip to content

Commit

Permalink
Merge pull request #50 from tinythings/isbm-builds-alternative
Browse files Browse the repository at this point in the history
Add alternative builds
  • Loading branch information
isbm authored Nov 29, 2024
2 parents 7579f5e + a5c78e9 commit aa01913
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
12 changes: 12 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[build]
#target = "aarch64-unknown-linux-gnu"
#target = "x86_64-unknown-linux-gnu"

[target.aarch64-unknown-linux-gnu]
linker = "aarch64-linux-gnu-gcc"
rustflags = [
"-C", "target-feature=+crt-static"
]

[target.aarch64-unknown-linux-musl]
linker = "aarch64-linux-musl-gcc"
8 changes: 0 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,6 @@ build:
mv target/release/proc target/release/sys/
mv target/release/net target/release/sys/
mv target/release/run target/release/sys/

# Move plugin binaries
rm -rf target/release/sys
mkdir -p target/release/sys
mv target/release/proc target/release/sys/
mv target/release/net target/release/sys/
mv target/release/run target/release/sys/

man:
pandoc --standalone --to man docs/manpages/sysinspect.8.md -o docs/manpages/sysinspect.8

Expand Down

0 comments on commit aa01913

Please sign in to comment.