This commit is contained in:
Oneirical 2024-05-15 10:09:19 -04:00
parent cae17ff42b
commit a7484d2e49

View file

@ -10,5 +10,10 @@
fn main() {
rustc().input("panic-impl-provider.rs").run();
rustc().input("panic-impl-consumer.rs").panic("abort").emit("llvm-ir").library_search_path(tmp_dir()).run();
rustc()
.input("panic-impl-consumer.rs")
.panic("abort")
.emit("llvm-ir")
.library_search_path(tmp_dir())
.run();
}