Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Commit

Permalink
add cross-compile target config
Browse files Browse the repository at this point in the history
This is necessary for compiling krustlet-wasi and krustlet-wascc for 64-bit ARM devices (and eventually 32-bit ARM as well, though that is currently not supported).

Signed-off-by: Matthew Fisher <[email protected]>
  • Loading branch information
Matthew Fisher committed May 20, 2020
1 parent c21c638 commit f89bd9b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .cargo/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[target.armv7-unknown-linux-gnueabihf]
linker = "arm-linux-gnueabihf-gcc"

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

0 comments on commit f89bd9b

Please sign in to comment.