We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9252525 commit bca25aeCopy full SHA for bca25ae
src/librustc_back/target/i686_apple_darwin.rs
@@ -12,6 +12,7 @@ use target::Target;
12
13
pub fn target() -> Target {
14
let mut base = super::apple_base::opts();
15
+ base.cpu = "yonah".to_string();
16
base.pre_link_args.push("-m32".to_string());
17
18
Target {
src/librustc_back/target/x86_64_apple_darwin.rs
@@ -12,7 +12,7 @@ use target::Target;
- base.cpu = "x86-64".to_string();
+ base.cpu = "core2".to_string();
base.eliminate_frame_pointer = false;
base.pre_link_args.push("-m64".to_string());
0 commit comments