summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Makefile -> GNUmakefileHEADmasterJari Vetoniemi2019-02-25
|
* make/readme: refactor makefile and buildingJari Vetoniemi2019-02-25
| | | | It's nicer now, and we can specify the android abis
* java: implement classloader findclassJari Vetoniemi2019-02-25
|
* wrapper: fix compiler warningsJari Vetoniemi2018-11-23
|
* wrapper: woops, some debug code commitedJari Vetoniemi2018-11-23
|
* libpthread: link against `rt` for older glibcJari Vetoniemi2018-11-23
|
* Makefile: libpthread first as it's needed by libdlJari Vetoniemi2018-11-23
|
* libEGL: define GLFW_INCLUDE_NONEJari Vetoniemi2018-11-23
|
* libc: generate sysconfJari Vetoniemi2018-11-23
|
* do not share mmapsJari Vetoniemi2018-11-23
|
* PACKAGE_CODE_PATH == apk file not extracted dirJari Vetoniemi2018-11-22
|
* refactor trampoline to use relative jmp/callJari Vetoniemi2018-11-22
|
* libjvm-java: Implement more system propertiesJari Vetoniemi2018-11-22
|
* libjvm-java: handle null stringJari Vetoniemi2018-11-22
|
* loader: fix uninitialized variableJari Vetoniemi2018-11-20
|
* libc-stdio: fix standard streams with libstdc++Jari Vetoniemi2018-11-20
|
* corrections to readmeJari Vetoniemi2018-11-19
|
* add libjvm-misc for anything app specificJari Vetoniemi2018-11-19
|
* loader: fix obb injectionJari Vetoniemi2018-11-19
|
* update READMEJari Vetoniemi2018-11-19
|
* loader: don't JNI_OnLoad if there's entrypointJari Vetoniemi2018-11-19
|
* loader: remove old printfJari Vetoniemi2018-11-19
|
* loader: fix commentsJari Vetoniemi2018-11-19
|
* improvements to the andre-apk.shJari Vetoniemi2018-11-19
|
* libjvm-android: make the hacky input scrollJari Vetoniemi2018-11-19
|
* disable VERBOSE_FUNCTIONS by defaultJari Vetoniemi2018-11-19
|
* remove hard coded paths, add andre-apk.shJari Vetoniemi2018-11-19
|
* rename app executable to andre (loader.c)Jari Vetoniemi2018-11-19
|
* libjvm-android: add android_os_Build_BRANDJari Vetoniemi2018-11-19
|
* libc: support various _chk functionsJari Vetoniemi2018-11-19
|
* libc: cleanupsJari Vetoniemi2018-11-19
|
* support running bionic binaries more properlyJari Vetoniemi2018-11-19
|
* Makefile: add missing depends to libcJari Vetoniemi2018-11-19
|
* refactor app.cJari Vetoniemi2018-11-18
|
* Makefile: wrapper.a hide symbolsJari Vetoniemi2018-11-18
|
* Makefile: larger stack usageJari Vetoniemi2018-11-18
|
* jvm: dont print objects if no VERBOSE_FUNCTIONSJari Vetoniemi2018-11-18
|
* wrapper: don't copy if no VERBOSE_FUNCTIONSJari Vetoniemi2018-11-18
|
* linker fixesJari Vetoniemi2018-11-18
|
* standalone libjvm-javaJari Vetoniemi2018-11-18
|
* set android sdk api level to 15Jari Vetoniemi2018-11-18
|
* jvm: static functionsJari Vetoniemi2018-11-18
|
* SDK_VERSION to INT_MAXJari Vetoniemi2018-11-18
|
* libjvm-java: implement java/lang/String/getBytesJari Vetoniemi2018-11-18
|
* libjvm-java: implement java/lang/System/getPropertyJari Vetoniemi2018-11-18
|
* Makefile: remove fake target tricksJari Vetoniemi2018-11-18
| | | | | Breaks dependency tracking as the target is never produced. Lets just use make as its meant to.
* antiantidebug: remove printfJari Vetoniemi2018-11-18
|
* linker: fix cpp_demangler settingJari Vetoniemi2018-11-18
|
* wrapper: use static log bufferJari Vetoniemi2018-11-18
|
* copy symbols in wrapper_createJari Vetoniemi2018-11-18
| | | | | | | | We don't know the lifetime of the const char* input, so lets copy it. this is quite naive, solution for now, but should be good enough as this is mainly for debugging. Maybe leter do something more fancy to avoid copies from symbols that came from linker for example, and use hashtable to avoid duplication.