rust/src/librustc_asan/build.rs

31 lines
965 B
Rust
Raw Normal View History

2016-12-29 22:28:11 -06:00
use std::env;
use build_helper::sanitizer_lib_boilerplate;
2016-12-29 22:28:11 -06:00
use cmake::Config;
fn main() {
2019-09-13 22:59:46 -05:00
println!("cargo:rerun-if-env-changed=RUSTC_BUILD_SANITIZERS");
if env::var("RUSTC_BUILD_SANITIZERS") != Ok("1".to_string()) {
return;
}
2016-12-29 22:28:11 -06:00
if let Some(llvm_config) = env::var_os("LLVM_CONFIG") {
build_helper::restore_library_path();
let (native, target) = match sanitizer_lib_boilerplate("asan") {
Ok(native) => native,
_ => return,
};
Config::new(&native.src_dir)
2016-12-29 22:28:11 -06:00
.define("COMPILER_RT_BUILD_SANITIZERS", "ON")
.define("COMPILER_RT_BUILD_BUILTINS", "OFF")
.define("COMPILER_RT_BUILD_XRAY", "OFF")
.define("LLVM_CONFIG_PATH", llvm_config)
.out_dir(&native.out_dir)
.build_target(&target)
2016-12-29 22:28:11 -06:00
.build();
native.fixup_sanitizer_lib_name("asan");
2016-12-29 22:28:11 -06:00
}
println!("cargo:rerun-if-env-changed=LLVM_CONFIG");
2016-12-29 22:28:11 -06:00
}