A repository for further experimenting with elf loading and in-place patching of android native libraries on non-android operating systems.
This attempts to fix several shortcomings the previous versions of GMLoader had, offering a more compliant compatibility layer, and an elf loader that supports even more relocation types.
This repository contains a lot of incomplete, experimental and untested code, and behavior is not guaranteed to match specifications, specially when it comes to the fake JNI implementation.
Corrections, fixes, issue reports and optimizations are always welcome.
ARCH
: Specify the architecture, e.g.:aarch64-linux-gnu
LLVM_FILE
: Specify the LLVM Clang library file, e.g.:/usr/lib/llvm-9/lib/libclang-9.so.1
for clang-9.LLVM_INC
: Specify the path for LLVM includes for your architecture, e.g.:aarch64-linux-gnu
.OPTM
: Specify the optimization flags, e.g.:-O3
,-Os
or-Og -ggdb
.
make -f Makefile.gmloader ARCH=aarch64-linux-gnu
In order to deploy, you must copy the lib
redist folder in the application's folder,
those files are part of the runtime, and are required to provide the functionality needed
by the runner.
See the related documentation for reference.
The android libraries can be debugged with gdb
using a breakpoint trick - check out the provided debugging example.
For this to be possible, you must extract the libraries from the APK into the application's library folder following the same structure as you would on the APK.
This is free software. The source files in this repository are released under the GPLv2 License, see the license file for more information.