xref: /wasmtime-44.0.1/crates/jit-debug/src/lib.rs (revision 74efac71)
14c8edb95SAlex Crichton //! > **⚠️ Warning ⚠️**: this crate is an internal-only crate for the Wasmtime
24c8edb95SAlex Crichton //! > project and is not intended for general use. APIs are not strictly
34c8edb95SAlex Crichton //! > reviewed for safety and usage outside of Wasmtime may have bugs. If
44c8edb95SAlex Crichton //! > you're interested in using this feel free to file an issue on the
54c8edb95SAlex Crichton //! > Wasmtime repository to start a discussion about doing so, but otherwise
64c8edb95SAlex Crichton //! > be aware that your usage of this crate is not supported.
7*74efac71SDoru Blânzeanu #![no_std]
8*74efac71SDoru Blânzeanu 
9*74efac71SDoru Blânzeanu #[cfg(feature = "std")]
10*74efac71SDoru Blânzeanu extern crate std;
114c8edb95SAlex Crichton 
124ed353a7Sbjorn3 #[cfg(feature = "gdb_jit_int")]
134ed353a7Sbjorn3 pub mod gdb_jit_int;
144ed353a7Sbjorn3 
154ed353a7Sbjorn3 #[cfg(all(feature = "perf_jitdump", target_os = "linux"))]
164ed353a7Sbjorn3 pub mod perf_jitdump;
17