diff options
author | iximeow <me@iximeow.net> | 2021-03-13 14:19:55 -0800 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2021-03-13 14:54:47 -0800 |
commit | 93c53657c2289e979672ee6c4612af7e9eac109c (patch) | |
tree | a0acdc143595f64a796827bc849a122dd49cc4e3 /ffi/real_mode | |
parent | 6232e8b1daf7067cb2e8065687530d5f88ecb46d (diff) |
split ffi crate to support distinct 16, 32, and 64-bit builds
initial work to optionally discard any instruction printing support
when using `-Z build-std` to fully remove .eh_frame, a stripped
long_mode_no_fmt .so is 61kb!
Diffstat (limited to 'ffi/real_mode')
-rw-r--r-- | ffi/real_mode/Cargo.toml | 14 | ||||
-rw-r--r-- | ffi/real_mode/src/lib.rs | 0 |
2 files changed, 14 insertions, 0 deletions
diff --git a/ffi/real_mode/Cargo.toml b/ffi/real_mode/Cargo.toml new file mode 100644 index 0000000..f24f8a4 --- /dev/null +++ b/ffi/real_mode/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "yaxpeax_x86_ffi_real_mode" +version = "0.0.2" +authors = ["iximeow <me@iximeow.net>"] +edition = "2018" + +[dependencies] +yaxpeax-x86 = { path = "../../", default-features = false } +yaxpeax-arch = { version = "0.0.4", default-features = false } + +[lib] +name = "yaxpeax_x86_ffi_real_mode" +path = "src/lib.rs" +crate-type = ["staticlib"] diff --git a/ffi/real_mode/src/lib.rs b/ffi/real_mode/src/lib.rs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/ffi/real_mode/src/lib.rs |