1
Fork 0

Raise minimum supported macOS to 10.12

This commit is contained in:
BlackHoleFox 2022-11-13 16:58:18 -06:00
parent 4e5b31c2b0
commit 58bbca958d
12 changed files with 33 additions and 45 deletions

View file

@ -4,7 +4,7 @@
// compile-flags: -O --target=i686-apple-darwin --crate-type=rlib
// needs-llvm-components: x86
// rustc-env:MACOSX_DEPLOYMENT_TARGET=10.9
// rustc-env:MACOSX_DEPLOYMENT_TARGET=10.14
#![feature(no_core, lang_items)]
#![no_core]
@ -20,7 +20,7 @@ pub struct Bool {
b: bool,
}
// CHECK: target triple = "i686-apple-macosx10.9.0"
// CHECK: target triple = "i686-apple-macosx10.14.0"
#[no_mangle]
pub extern "C" fn structbool() -> Bool {
Bool { b: true }