Skip to content

Commit

Permalink
fix: add linker info for each target
Browse files Browse the repository at this point in the history
  • Loading branch information
diogomatsubara committed Oct 23, 2024
1 parent feaaedf commit 7a2d7eb
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,16 @@ rustflags = "-Ctarget-feature=-crt-static"

[target.aarch64-unknown-linux-musl]
rustflags = "-Ctarget-feature=-crt-static"

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

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

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

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

0 comments on commit 7a2d7eb

Please sign in to comment.