Remove legacy bitcode defaults
This commit is contained in:
parent
32f5db9890
commit
3f8704355b
1 changed files with 4 additions and 9 deletions
|
@ -7,6 +7,10 @@ pub fn target() -> Target {
|
||||||
base.supported_sanitizers = SanitizerSet::ADDRESS | SanitizerSet::THREAD;
|
base.supported_sanitizers = SanitizerSet::ADDRESS | SanitizerSet::THREAD;
|
||||||
|
|
||||||
Target {
|
Target {
|
||||||
|
// Clang automatically chooses a more specific target based on
|
||||||
|
// IPHONEOS_DEPLOYMENT_TARGET.
|
||||||
|
// This is required for the target to pick the right
|
||||||
|
// MACH-O commands, so we do too.
|
||||||
llvm_target: ios_llvm_target(arch).into(),
|
llvm_target: ios_llvm_target(arch).into(),
|
||||||
pointer_width: 64,
|
pointer_width: 64,
|
||||||
data_layout: "e-m:o-i64:64-i128:128-n32:64-S128".into(),
|
data_layout: "e-m:o-i64:64-i128:128-n32:64-S128".into(),
|
||||||
|
@ -14,16 +18,7 @@ pub fn target() -> Target {
|
||||||
options: TargetOptions {
|
options: TargetOptions {
|
||||||
features: "+neon,+fp-armv8,+apple-a12,+v8.3a,+paca,+pacg".into(),
|
features: "+neon,+fp-armv8,+apple-a12,+v8.3a,+paca,+pacg".into(),
|
||||||
max_atomic_width: Some(128),
|
max_atomic_width: Some(128),
|
||||||
forces_embed_bitcode: true,
|
|
||||||
frame_pointer: FramePointer::NonLeaf,
|
frame_pointer: FramePointer::NonLeaf,
|
||||||
bitcode_llvm_cmdline: "-triple\0\
|
|
||||||
arm64e-apple-ios14.1.0\0\
|
|
||||||
-emit-obj\0\
|
|
||||||
-disable-llvm-passes\0\
|
|
||||||
-target-abi\0\
|
|
||||||
darwinpcs\0\
|
|
||||||
-Os\0"
|
|
||||||
.into(),
|
|
||||||
..base
|
..base
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue