Skip to content

Commit b69558c

Browse files
committed
testing: fix gcc/linker paths for several targets
There are also changes in the upstream docker images to support more targets (android on ARM, etc).
1 parent 14e2f76 commit b69558c

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

ci/cargo-config

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,16 @@ linker = "gcc"
1616
linker = "arm-linux-androideabi-gcc"
1717

1818
[target.arm-unknown-linux-gnueabihf]
19-
linker = "arm-linux-gnueabihf-gcc"
19+
linker = "arm-linux-gnueabihf-gcc-4.7"
2020

2121
[target.mips-unknown-linux-gnu]
22-
linker = "mips-linux-gnu-gcc"
22+
linker = "mips-linux-gnu-gcc-5"
23+
24+
[target.mipsel-unknown-linux-gnu]
25+
linker = "mipsel-linux-gnu-gcc-5"
2326

2427
[target.aarch64-unknown-linux-gnu]
25-
linker = "aarch64-linux-gnu-gcc"
28+
linker = "aarch64-linux-gnu-gcc-4.8"
29+
30+
[target.powerpc-unknown-linux-gnu]
31+
linker = "powerpc-linux-gnu-gcc-4.8"

0 commit comments

Comments
 (0)