1
1
[target .aarch64-unknown-linux-musl ]
2
- rustflags = [" -C" , " target-feature=+crt-static" , " -C" , " link-arg=-s" , " -C" , " link-arg=-lc" , " -C" , " link-arg=-lgcc" , " -L" , " native=/usr/local/aarch64-linux-musl-target/lib" , " -l" , " static=stdc++" ]
2
+ rustflags = [
3
+ " -C" , " target-feature=+crt-static" ,
4
+ " -C" , " link-arg=-s" ,
5
+ " -C" , " link-arg=-lc" ,
6
+ " -C" , " link-arg=-lgcc" ,
7
+ " -L" , " native=/usr/local/aarch64-linux-musl-target/lib" ,
8
+ " -l" , " static=stdc++" ,
9
+ ]
3
10
4
11
[target .armv7-unknown-linux-musleabihf ]
5
- rustflags = [" -C" , " target-feature=+crt-static" , " -C" , " link-arg=-s" , " -C" , " link-arg=-lc" , " -C" , " link-arg=-lgcc" , " -L" , " native=/usr/local/arm-linux-musleabihf-target/lib" , " -l" , " static=stdc++" ]
12
+ rustflags = [
13
+ " -C" , " target-feature=+crt-static" ,
14
+ " -C" , " link-arg=-s" ,
15
+ " -C" , " link-arg=-lc" ,
16
+ " -C" , " link-arg=-lgcc" ,
17
+ " -L" , " native=/usr/local/arm-linux-musleabihf-target/lib" ,
18
+ " -l" , " static=stdc++" ,
19
+ ]
6
20
7
21
[target .mips-unknown-linux-musl ]
8
- rustflags = [" -C" , " target-feature=+crt-static" , " -C" , " link-arg=-s" , " -C" , " link-arg=-lc" , " -C" , " link-arg=-lgcc" , " -L" , " native=/usr/local/mips-linux-muslsf-target/lib" , " -l" , " static=stdc++" ]
22
+ rustflags = [
23
+ " -C" , " link-arg=-Wl,--allow-multiple-definition" ,
24
+ " -C" , " target-feature=+crt-static" ,
25
+ " -C" , " link-arg=-s" ,
26
+ " -C" , " link-arg=-lc" ,
27
+ " -C" , " link-arg=-lgcc" ,
28
+ " -C" , " link-arg=-latomic" ,
29
+ " -L" , " native=/usr/local/mips-linux-muslsf-target/lib" ,
30
+ " -l" , " static=stdc++" ,
31
+ ]
9
32
10
33
[target .mipsel-unknown-linux-musl ]
11
- rustflags = [" -C" , " target-feature=+crt-static" , " -C" , " link-arg=-s" , " -C" , " link-arg=-lc" , " -C" , " link-arg=-lgcc" , " -L" , " native=/usr/local/mipsel-linux-muslsf-target/lib" , " -l" , " static=stdc++" ]
34
+ rustflags = [
35
+ " -C" , " link-arg=-Wl,--allow-multiple-definition" ,
36
+ " -C" , " target-feature=+crt-static" ,
37
+ " -C" , " link-arg=-s" ,
38
+ " -C" , " link-arg=-lc" ,
39
+ " -C" , " link-arg=-lgcc" ,
40
+ " -C" , " link-arg=-latomic" ,
41
+ " -L" , " native=/usr/local/mipsel-linux-muslsf-target/lib" ,
42
+ " -l" , " static=stdc++" ,
43
+ ]
12
44
13
45
[target .armv5te-unknown-linux-musleabi ]
14
- # Workaround for:
15
- # https://github.com/rust-lang/compiler-builtins/issues/420
16
- rustflags = [" -C" , " link-arg=-Wl,--allow-multiple-definition" , " -C" , " target-feature=+crt-static" , " -C" , " link-arg=-s" , " -C" , " link-arg=-lc" , " -C" , " link-arg=-lgcc" , " -L" , " native=/usr/local/arm-linux-musleabi-target/lib" , " -l" , " static=stdc++" ]
46
+ # Workaround for:
47
+ # https://github.com/rust-lang/compiler-builtins/issues/420
48
+ rustflags = [
49
+ " -C" , " link-arg=-Wl,--allow-multiple-definition" ,
50
+ " -C" , " target-feature=+crt-static" ,
51
+ " -C" , " link-arg=-s" ,
52
+ " -C" , " link-arg=-lc" ,
53
+ " -C" , " link-arg=-lgcc" ,
54
+ " -C" , " link-arg=-latomic" ,
55
+ " -L" , " native=/usr/local/arm-linux-musleabi-target/lib" ,
56
+ " -l" , " static=stdc++" ,
57
+ ]
0 commit comments