File tree 1 file changed +1
-14
lines changed
1 file changed +1
-14
lines changed Original file line number Diff line number Diff line change @@ -48,10 +48,6 @@ pub fn target() -> TargetResult {
48
48
// minimum extra features, these cannot be disabled via -C
49
49
features : "+soft-float,+strict-align" . to_string ( ) ,
50
50
51
- executables : true ,
52
-
53
- relocation_model : RelocModel :: Static ,
54
-
55
51
main_needs_argc_argv : false ,
56
52
57
53
// No thread-local storage (just use a static Cell)
@@ -60,16 +56,7 @@ pub fn target() -> TargetResult {
60
56
// don't have atomic compare-and-swap
61
57
atomic_cas : false ,
62
58
63
- // always just abort
64
- panic_strategy : PanicStrategy :: Abort ,
65
-
66
- // ABIs to not use
67
- unsupported_abis : super :: arm_base:: unsupported_abis ( ) ,
68
-
69
- // this is turned off just like in the `thumb_base` module
70
- emit_debug_gdb_scripts : false ,
71
-
72
- ..TargetOptions :: default ( )
59
+ ..super :: thumb_base:: opts ( )
73
60
} ,
74
61
} )
75
62
}
You can’t perform that action at this time.
0 commit comments