Fenrir
8 years ago
1 changed files with 13 additions and 11 deletions
@ -1,30 +1,32 @@ |
|||||||
{ |
{ |
||||||
"data-layout": "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64", |
"data-layout": "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64", |
||||||
"llvm-target": "arm-none-eabihf", |
"llvm-target": "arm-none-eabihf", |
||||||
"linker": "arm-none-eabi-g++", |
"linker": "arm-none-eabi-gcc", |
||||||
"ar": "arm-none-eabi-ar", |
"ar": "arm-none-eabi-ar", |
||||||
"target-endian": "little", |
"target-endian": "little", |
||||||
"target-pointer-width": "32", |
"target-pointer-width": "32", |
||||||
"arch": "arm", |
"arch": "arm", |
||||||
"os": "none", |
"os": "linux", |
||||||
"cpu": "mpcore", |
"cpu": "mpcore", |
||||||
"features": "+vfp2", |
"features": "+vfp2", |
||||||
"relocation-model": "static", |
"relocation-model": "static", |
||||||
"linker-is-gnu": true, |
|
||||||
"has-rpath": true, |
|
||||||
"morestack": false, |
|
||||||
"disable-redzone": true, |
"disable-redzone": true, |
||||||
"executables": true, |
"executables": true, |
||||||
"dynamic-linking": false, |
|
||||||
"no-compiler-rt": true, |
"no-compiler-rt": true, |
||||||
"exe-suffix": ".elf", |
"exe-suffix": ".elf", |
||||||
"is-like-windows": true, |
|
||||||
"function-sections": false, |
|
||||||
"pre-link-args": [ |
"pre-link-args": [ |
||||||
"-specs", |
"-specs=3dsx.specs", |
||||||
"3dsx.specs", |
|
||||||
"-march=armv6k", |
"-march=armv6k", |
||||||
"-mtune=mpcore", |
"-mtune=mpcore", |
||||||
"-mfloat-abi=hard" |
"-mfloat-abi=hard", |
||||||
|
"-mtp=soft" |
||||||
|
], |
||||||
|
"post-link-args": [ |
||||||
|
"-lc", |
||||||
|
"-lm", |
||||||
|
"-lsysbase", |
||||||
|
"-lc", |
||||||
|
"-lgcc", |
||||||
|
"-lc" |
||||||
] |
] |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue