5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ pub fn target() -> Target {
16
16
linker : Some ( "rust-lld" . into ( ) ) ,
17
17
relocation_model : RelocModel :: Static ,
18
18
panic_strategy : PanicStrategy :: Abort ,
19
- max_atomic_width : Some ( 32 ) ,
19
+ max_atomic_width : Some ( 64 ) ,
20
20
emit_debug_gdb_scripts : false ,
21
21
// GCC and Clang default to 8 for arm-none here
22
22
c_enum_min_bits : Some ( 8 ) ,
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ pub fn target() -> Target {
17
17
relocation_model : RelocModel :: Static ,
18
18
panic_strategy : PanicStrategy :: Abort ,
19
19
features : "+vfp3,-d32,-fp16" . into ( ) ,
20
- max_atomic_width : Some ( 32 ) ,
20
+ max_atomic_width : Some ( 64 ) ,
21
21
emit_debug_gdb_scripts : false ,
22
22
// GCC and Clang default to 8 for arm-none here
23
23
c_enum_min_bits : Some ( 8 ) ,
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ pub fn target() -> Target {
33
33
pre_link_args,
34
34
exe_suffix : ".elf" . into ( ) ,
35
35
panic_strategy : PanicStrategy :: Abort ,
36
- max_atomic_width : Some ( 32 ) ,
36
+ max_atomic_width : Some ( 64 ) ,
37
37
..Default :: default ( )
38
38
} ,
39
39
}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ pub fn target() -> Target {
15
15
linker : Some ( "rust-lld" . into ( ) ) ,
16
16
relocation_model : RelocModel :: Static ,
17
17
panic_strategy : PanicStrategy :: Abort ,
18
- max_atomic_width : Some ( 32 ) ,
18
+ max_atomic_width : Some ( 64 ) ,
19
19
emit_debug_gdb_scripts : false ,
20
20
// GCC and Clang default to 8 for arm-none here
21
21
c_enum_min_bits : Some ( 8 ) ,
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ pub fn target() -> Target {
16
16
relocation_model : RelocModel :: Static ,
17
17
panic_strategy : PanicStrategy :: Abort ,
18
18
features : "+vfp3,-d32,-fp16" . into ( ) ,
19
- max_atomic_width : Some ( 32 ) ,
19
+ max_atomic_width : Some ( 64 ) ,
20
20
emit_debug_gdb_scripts : false ,
21
21
// GCC and Clang default to 8 for arm-none here
22
22
c_enum_min_bits : Some ( 8 ) ,
0 commit comments