Skip to content

Commit e07ae3c

Browse files
committed
ARMV6K 3DS: Removed useless parameters in target spec
1 parent 8078c4c commit e07ae3c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

compiler/rustc_target/src/spec/armv6k_nintendo_3ds.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,14 @@ pub fn target() -> Target {
1010
LinkerFlavor::Gcc,
1111
vec![
1212
"-specs=3dsx.specs".to_string(),
13-
"-g".to_string(),
14-
"-march=armv6k".to_string(),
1513
"-mtune=mpcore".to_string(),
1614
"-mfloat-abi=hard".to_string(),
1715
"-mtp=soft".to_string(),
1816
],
1917
);
2018

2119
Target {
22-
llvm_target: "arm-none-eabihf".to_string(),
20+
llvm_target: "armv6k-none-eabihf".to_string(),
2321
pointer_width: 32,
2422
data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".to_string(),
2523
arch: "arm".to_string(),

0 commit comments

Comments
 (0)