mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-08 13:48:26 +00:00
Make CompilerOptions flags private again
This commit is contained in:
@@ -30,15 +30,15 @@ pub struct StoreOptions {
|
||||
pub struct CompilerOptions {
|
||||
/// Use Singlepass compiler.
|
||||
#[clap(long, conflicts_with_all = &["cranelift", "llvm"])]
|
||||
pub singlepass: bool,
|
||||
singlepass: bool,
|
||||
|
||||
/// Use Cranelift compiler.
|
||||
#[clap(long, conflicts_with_all = &["singlepass", "llvm"])]
|
||||
pub cranelift: bool,
|
||||
cranelift: bool,
|
||||
|
||||
/// Use LLVM compiler.
|
||||
#[clap(long, conflicts_with_all = &["singlepass", "cranelift"])]
|
||||
pub llvm: bool,
|
||||
llvm: bool,
|
||||
|
||||
/// Enable compiler internal verification.
|
||||
#[clap(long)]
|
||||
|
||||
Reference in New Issue
Block a user