Skip to content

Commit

Permalink
Enables JIT option regardless of feature in CLI.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lichtso committed Oct 11, 2023
1 parent cf405a1 commit 4820aba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ fn main() {
memory
}
};
#[cfg(all(feature = "jit", not(target_os = "windows"), target_arch = "x86_64"))]
#[cfg(all(not(target_os = "windows"), target_arch = "x86_64"))]
if matches.value_of("use") == Some("jit") {
executable.jit_compile().unwrap();
}
Expand Down

0 comments on commit 4820aba

Please sign in to comment.