Skip to content

Commit

Permalink
Platform specific objcopy commands
Browse files Browse the repository at this point in the history
  • Loading branch information
unlimitedbacon committed Feb 25, 2019
1 parent b779b1e commit 4ed757b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .cargo/config
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
[target.armv7-unknown-linux-gnueabihf]
linker = "arm-linux-gnueabihf-gcc"
strip = { path = "/usr/bin/arm-linux-gnueabihf-strip" }
objcopy = { path = "/usr/bin/arm-linux-gnueabihf-objcopy" }

[target.aarch64-unknown-linux-gnu]
linker = "aarch64-linux-gnu-gcc"
strip = { path = "/usr/bin/aarch64-linux-gnu-strip" }
objcopy = { path = "/usr/bin/aarch64-linux-gnu-objcopy" }

0 comments on commit 4ed757b

Please sign in to comment.