Skip to content

Commit ddde38d

Browse files
committed
Fix jit mode with cargo-clif wrapper
1 parent f52162f commit ddde38d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/cargo-clif.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ fn main() {
3838
.chain(env::args().skip(2))
3939
.chain([
4040
"--".to_string(),
41-
"-Zunstable-features".to_string(),
41+
"-Zunstable-options".to_string(),
4242
"-Cllvm-args=mode=jit".to_string(),
4343
])
4444
.collect()
@@ -52,7 +52,7 @@ fn main() {
5252
.chain(env::args().skip(2))
5353
.chain([
5454
"--".to_string(),
55-
"-Zunstable-features".to_string(),
55+
"-Zunstable-options".to_string(),
5656
"-Cllvm-args=mode=jit-lazy".to_string(),
5757
])
5858
.collect()

0 commit comments

Comments
 (0)