Skip to content

Commit d4f2ef9

Browse files
committed
rollup merge of rust-lang#27672: eefriedman/ios-target-cpu
This matches the behavior of clang. See also discussion on rust-lang#27307.
2 parents d493659 + 155689b commit d4f2ef9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc_back/target/apple_ios_base.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ fn target_cpu(arch: Arch) -> String {
7777
Armv7 => "cortex-a8", // iOS7 is supported on iPhone 4 and higher
7878
Armv7s => "cortex-a9",
7979
Arm64 => "cyclone",
80-
I386 => "generic",
81-
X86_64 => "x86-64",
80+
I386 => "yonah",
81+
X86_64 => "core2",
8282
}.to_string()
8383
}
8484

0 commit comments

Comments
 (0)