wasmtime_internal_jit_debug/
lib.rs

1//! > **⚠️ Warning ⚠️**: this crate is an internal-only crate for the Wasmtime
2//! > project and is not intended for general use. APIs are not strictly
3//! > reviewed for safety and usage outside of Wasmtime may have bugs. If
4//! > you're interested in using this feel free to file an issue on the
5//! > Wasmtime repository to start a discussion about doing so, but otherwise
6//! > be aware that your usage of this crate is not supported.
7#![no_std]
8
9#[cfg(feature = "std")]
10extern crate std;
11
12#[cfg(feature = "gdb_jit_int")]
13pub mod gdb_jit_int;
14
15#[cfg(all(feature = "perf_jitdump", target_os = "linux"))]
16pub mod perf_jitdump;