Improved checking of target's llvm_config

Point llvm @bitshifter branch until PR accepted

Use today's date for LLVM auto clean trigger

Update LLVM submodule to point at rust-lang fork.

Handle case when target is set
This commit is contained in:
Cameron Hart
2016-08-06 15:54:28 +10:00
parent cbb88faad7
commit 05045da9fd
4 changed files with 13 additions and 3 deletions

View File

@@ -727,6 +727,16 @@ impl Build {
self.out.join(target).join("llvm")
}
/// Returns true if no custom `llvm-config` is set for the specified target.
///
/// If no custom `llvm-config` was specified then Rust's llvm will be used.
fn is_rust_llvm(&self, target: &str) -> bool {
match self.config.target_config.get(target) {
Some(ref c) => c.llvm_config.is_none(),
None => true
}
}
/// Returns the path to `llvm-config` for the specified target.
///
/// If a custom `llvm-config` was specified for target then that's returned