Build support for no llvm

This commit is contained in:
bjorn3
2017-06-18 16:00:10 +02:00
parent 73c3f55a3e
commit e152a1620b
4 changed files with 17 additions and 0 deletions

View File

@@ -429,6 +429,9 @@ impl Build {
if self.config.use_jemalloc {
features.push_str(" jemalloc");
}
if self.config.llvm_enabled {
features.push_str(" llvm");
}
features
}