Closed ServerBSvvv closed 10 months ago
or use it with WSL?
If you mean how to compile on windows for windows target you just cargo build
with the environment variables that you need (e.g. FRIDA_CODE
)
If you mean how to use the resulting binary in windows you can either inject the resulting DLL however you like or just use DLL proxying which allows you to "mimic" a DLL by renaming the original to mylib-orig.dll
and the resulting compiled dll to mylib.dll
If you mean how to compile on windows for windows target you just
cargo build
with the environment variables that you need (e.g.FRIDA_CODE
)If you mean how to use the resulting binary in windows you can either inject the resulting DLL however you like or just use DLL proxying which allows you to "mimic" a DLL by renaming the original to
mylib-orig.dll
and the resulting compiled dll tomylib.dll
what if I need to compile a shared library for android armv7?
you can frida-gadget for android (check frida's wiki)
if you still want to use deepfreeze for android:
rustup target add armv7-linux-androideabi
cargo build --lib --target armv7-linux-androideabi
just make sure that you have the android toolchain installed
How to use it on Windows?