We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now the CLI is structured around "compilers". We should change this concept to revolve around runtimes. For example, we have the type
#[cfg(feature = "compiler")] #[derive(Debug, Clone, clap::Parser, Default)] /// The compiler options pub struct CompilerOptions { /// Use Singlepass compiler. #[clap(long, conflicts_with_all = &["cranelift", "llvm"])] singlepass: bool, /// Use Cranelift compiler. #[clap(long, conflicts_with_all = &["singlepass", "llvm"])] cranelift: bool, /// Use LLVM compiler. #[clap(long, conflicts_with_all = &["singlepass", "cranelift"])] llvm: bool, ... }
And it should take into account other runtimes (V8, wamr, wasmi) as well.
The text was updated successfully, but these errors were encountered:
xdoardo
Successfully merging a pull request may close this issue.
Right now the CLI is structured around "compilers". We should change this concept to revolve around runtimes. For example, we have the type
And it should take into account other runtimes (V8, wamr, wasmi) as well.
The text was updated successfully, but these errors were encountered: