2016-12-29 22:28:11 -06:00
|
|
|
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2017-02-04 19:10:29 -06:00
|
|
|
extern crate build_helper;
|
2016-12-29 22:28:11 -06:00
|
|
|
extern crate cmake;
|
|
|
|
|
|
|
|
use std::env;
|
2017-04-17 15:22:16 -05:00
|
|
|
use build_helper::sanitizer_lib_boilerplate;
|
2016-12-29 22:28:11 -06:00
|
|
|
|
|
|
|
use cmake::Config;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
if let Some(llvm_config) = env::var_os("LLVM_CONFIG") {
|
2017-04-17 15:22:16 -05:00
|
|
|
let native = match sanitizer_lib_boilerplate("asan") {
|
2017-03-03 11:11:04 -06:00
|
|
|
Ok(native) => native,
|
|
|
|
_ => return,
|
|
|
|
};
|
2017-03-02 17:15:56 -06:00
|
|
|
|
|
|
|
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)
|
2017-03-02 17:15:56 -06:00
|
|
|
.out_dir(&native.out_dir)
|
2016-12-29 22:28:11 -06:00
|
|
|
.build_target("asan")
|
|
|
|
.build();
|
|
|
|
}
|
2017-06-30 12:35:00 -05:00
|
|
|
println!("cargo:rerun-if-env-changed=LLVM_CONFIG");
|
2016-12-29 22:28:11 -06:00
|
|
|
}
|