1
0
Fork 0

Added cross compile configuration

This commit is contained in:
Alexander Böhm 2024-01-05 15:02:36 +01:00
parent af91ec61c9
commit df2a35f4d3
2 changed files with 9 additions and 0 deletions

5
.cargo/config.toml Normal file
View File

@ -0,0 +1,5 @@
[target.armv7-unknown-linux-musleabi]
linker = "arm-linux-gnueabi-gcc"
[target.armv7-unknown-linux-musleabihf]
linker = "arm-linux-gnueabihf-gcc"

4
rust-toolchain Normal file
View File

@ -0,0 +1,4 @@
[toolchain]
channel = "stable"
targets = ["armv7-unknown-linux-musleabihf"]
profile = "default"