We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8078c4c commit e07ae3cCopy full SHA for e07ae3c
compiler/rustc_target/src/spec/armv6k_nintendo_3ds.rs
@@ -10,16 +10,14 @@ pub fn target() -> Target {
10
LinkerFlavor::Gcc,
11
vec![
12
"-specs=3dsx.specs".to_string(),
13
- "-g".to_string(),
14
- "-march=armv6k".to_string(),
15
"-mtune=mpcore".to_string(),
16
"-mfloat-abi=hard".to_string(),
17
"-mtp=soft".to_string(),
18
],
19
);
20
21
Target {
22
- llvm_target: "arm-none-eabihf".to_string(),
+ llvm_target: "armv6k-none-eabihf".to_string(),
23
pointer_width: 32,
24
data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".to_string(),
25
arch: "arm".to_string(),
0 commit comments