1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{
"llvm-target": "arm-none-eabihf",
"data-layout": "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64",
"os": "none",
"env": "eabi",
"vendor": "unknown",
"arch": "arm",
"target-cpu": "mpcore",
"features": "+strict-align,+v6,+vfp2,-d32",
"target-endian": "little",
"target-pointer-width": "32",
"target-c-int-width": "32",
"max-atomic-width": 64,
"comment_linker_llvm": "The following config uses the llvm linker",
"linker-flavor": "ld.lld",
"linker": "rust-lld",
"comment_linker_gcc": "The following config uses the gcc linker",
"--linker-flavor": "ld",
"--linker": "arm-none-eabi-ld",
"executables": true,
"dynamic-linking": false,
"relocation-model": "static",
"no-compiler-rt": true,
"panic-strategy": "abort",
"crt-static-respected": true
}
|