Remove -fno-rtti

This commit is contained in:
losfair
2019-08-22 22:58:08 -07:00
parent 613e4de9fc
commit 212e2be166

View File

@ -253,7 +253,6 @@ fn get_llvm_cxxflags() -> String {
.split(&[' ', '\n'][..])
.filter(|word| !word.starts_with("-W"))
.filter(|word| word != &"-fno-exceptions")
.filter(|word| word != &"-fno-rtti")
.collect::<Vec<_>>()
.join(" ")
}