summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* wrapper/linker: __cxa_demangle from linkerJari Vetoniemi2018-04-19
| | | | | We want to use android's libstdc++, so we need to pass __cxa_demangle from linker.
* linker: Use dladdr1 to get symbol infoJari Vetoniemi2018-04-19
| | | | Casting symbol is wrong.
* libc: Implement bionic's ctypeJari Vetoniemi2018-04-19
|
* linker: s/APKENV_DEBUG/LINKER_DEBUG/Jari Vetoniemi2018-04-19
|
* linker: debug print to stderrJari Vetoniemi2018-04-19
|
* linker: Remove libc precondJari Vetoniemi2018-04-19
|
* linker/libc: don't wrap variable symbolsJari Vetoniemi2018-04-19
| | | | | This is why the bionic_file_to_glibc_file did not work with just pointers. The input is actually pointer to our wrapper, doh.
* libc: Wrap more stdio funcsJari Vetoniemi2018-04-19
|
* libc: stdio must be wrappedJari Vetoniemi2018-04-18
| | | | | | | | | | | | | | Bionic libc does stupid stuff and defines standard streams as macros to reference of an array element. Thus we can't just point standard streams to their respective correct addresses. (Why does both glibc and bionic even expose the internal FILE structs??) So we have to wrap every function that takes FILE* as argument and mangle it with bionic_file_to_glibc_file. We can't just check addresses because gnu's libstdc++ copies the FILE*. I assume same thing happens with the c++ locale support, and we need to do more complex ctype wrapping.
* android/EGL: Mark ANativeWindow w/ headerJari Vetoniemi2018-03-11
| | | | | | | | Remove eglGetDisplay as it's called with NULL anyways (Reimplement if otherwise in some app) In eglCreateWindowSurface, check that our pointer really is ANativeWindow, otherwise try use it as is.
* verbose: fix wrong printf format stringsJari Vetoniemi2018-03-11
| | | | Thanks gcc's printf attribute
* verbose: Move implementation to wrapper.cJari Vetoniemi2018-03-11
| | | | | Static header implementation is not thread safe as mutex is of course duplicated to each version...
* README: Add note about apitraceJari Vetoniemi2018-03-10
|
* linker: Refactor glibc dlopen hacksJari Vetoniemi2018-03-10
| | | | Allows us to return "valid" pointer when bionic program calls dlopen.
* java: system.load graceful failJari Vetoniemi2018-03-10
|
* android: Create GLFW window with no client APIJari Vetoniemi2018-03-10
|
* EGL: s/win/window/Jari Vetoniemi2018-03-10
|
* EGL: Include no client api headersJari Vetoniemi2018-03-10
|
* EGL: link glfwJari Vetoniemi2018-03-10
|
* libEGL: Use unions for function ptrsJari Vetoniemi2018-03-02
|
* jvm: Cleaner implementation, implement stuffJari Vetoniemi2018-03-02
| | | | Turned bunch of copy-pasta code into macros.
* pthread: Fix typo and add type safetyJari Vetoniemi2018-03-01
|
* android: Add libwrap.c for inspecting on androidJari Vetoniemi2018-02-28
| | | | This lets us see what native calls android apps make.
* jvm: verboase_log native methodsJari Vetoniemi2018-02-28
|
* dlfcn: Static pthread initializerJari Vetoniemi2018-02-28
|
* verbose: Inline when VERBOSE_FUNCTIONS disabledJari Vetoniemi2018-02-27
|
* liblog: Output newlineJari Vetoniemi2018-02-27
|
* pthread: Fix getattr_npJari Vetoniemi2018-02-27
|
* pthread: More standard confirming implementationJari Vetoniemi2018-02-27
| | | | Also allows to use valgrind without suppressions on good programs!
* app: Unity related workJari Vetoniemi2018-02-27
|
* Add libEGL shimJari Vetoniemi2018-02-27
|
* wrapper: Don't wrap NULL functionsJari Vetoniemi2018-02-27
|
* linker: HacksJari Vetoniemi2018-02-27
|
* libpthread: Implement functionsJari Vetoniemi2018-02-27
|
* liblog: Implement functionsJari Vetoniemi2018-02-27
|
* libc: Togglable libstdc++ supportJari Vetoniemi2018-02-27
| | | | | Can use either host libstdc++ or android's where android's is probably must for anything other than clang or gcc
* libc: Implement sigactionJari Vetoniemi2018-02-27
|
* libandroid: implement more functionsJari Vetoniemi2018-02-27
|
* jvm: Make java implementations optionalJari Vetoniemi2018-02-27
| | | | No need to implement crap that doesn't matter for app's functionality.
* android: Don't assert all paramsJari Vetoniemi2018-02-25
| | | | This function is not very well documented.
* app: Whee more crap to get unity stuff workJari Vetoniemi2018-02-25
|
* libc: ugly dynamic_cast hackJari Vetoniemi2018-02-25
| | | | | We should have option to use android's libstdc++ implementations as well.
* libc: verbose sysconfJari Vetoniemi2018-02-25
|
* wrapper: Add assertsJari Vetoniemi2018-02-25
|
* dlfcn: Try dlsym glibc symbols firstJari Vetoniemi2018-02-25
|
* jvm-android: Implement more methodsJari Vetoniemi2018-02-25
|
* libc: Implement __page_size and __h_errnoJari Vetoniemi2018-02-25
|
* libc-verbose: Add more functionsJari Vetoniemi2018-02-25
|
* jvm: Implement GetStaticObjectFieldJari Vetoniemi2018-02-25
|
* Makefile: Bit sanityJari Vetoniemi2018-02-25
|