* Remove the `wasmtime wasm2obj` command This commit removes the `wasm2obj` subcommand of the `wasmtime` CLI. This subcommand has a very long history and dates back quite far. While it's existed, however, it's never been documented in terms of the output it's produced. AFAIK it's only ever been used for debugging to see the machine code output of Wasmtime on some modules. With recent changes to the module serialization output the output of `wasmtime compile`, the `*.cwasm` file, is now a native ELF file which can be fed to standard tools like `objdump`. Consequently I dont think there's any remaining need to keep `wasm2obj` around itself, so this commit removes the subcommand. * More code to delete * Try to fix debuginfo tests
10 lines
175 B
Rust
10 lines
175 B
Rust
//! The module for the Wasmtime CLI commands.
|
|
|
|
mod compile;
|
|
mod config;
|
|
mod run;
|
|
mod settings;
|
|
mod wast;
|
|
|
|
pub use self::{compile::*, config::*, run::*, settings::*, wast::*};
|