We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da45e99 commit fa19626Copy full SHA for fa19626
src/main.rs
@@ -26,7 +26,7 @@ fn main() {
26
logger::init();
27
let cli = cli::parse();
28
let kani_path = kani_path();
29
- assert!(std::fs::exists(&kani_path).unwrap());
+ info!(kani_path);
30
let mut args = Vec::from(
31
[
32
// the first argument to rustc is unimportant
@@ -42,7 +42,7 @@ fn main() {
42
"--extern",
43
"kani",
44
45
- "noprelude:std=/home/zjp/rust/kani/target/kani/lib/libstd.rlib",
+ &format!("noprelude:std={kani_path}/lib/libstd.rlib"),
46
"-Zunstable-options",
47
"-Zalways-encode-mir",
48
"-Zmir-enable-passes=-RemoveStorageMarkers",
0 commit comments