2019-04-25 16:04:37 -04:00
|
|
|
// Checks that we correctly modify the target when MACOSX_DEPLOYMENT_TARGET is set.
|
|
|
|
// See issue #60235.
|
|
|
|
|
2025-02-24 09:26:54 +00:00
|
|
|
//@ add-core-stubs
|
2025-02-08 19:45:40 -08:00
|
|
|
//@ compile-flags: -Copt-level=3 --target=x86_64-apple-darwin --crate-type=rlib
|
2021-06-13 21:19:39 +03:00
|
|
|
//@ needs-llvm-components: x86
|
2022-11-13 16:58:18 -06:00
|
|
|
//@ rustc-env:MACOSX_DEPLOYMENT_TARGET=10.14
|
2019-04-25 16:04:37 -04:00
|
|
|
#![feature(no_core, lang_items)]
|
|
|
|
#![no_core]
|
|
|
|
|
2025-02-24 09:26:54 +00:00
|
|
|
extern crate minicore;
|
|
|
|
use minicore::*;
|
2019-04-25 16:04:37 -04:00
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
pub struct Bool {
|
|
|
|
b: bool,
|
|
|
|
}
|
|
|
|
|
2022-11-13 16:58:18 -06:00
|
|
|
// CHECK: target triple = "x86_64-apple-macosx10.14.0"
|
2019-04-25 16:04:37 -04:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn structbool() -> Bool {
|
|
|
|
Bool { b: true }
|
|
|
|
}
|