| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
-> min '-static-libgcc -static-libstdc++'
|
|
|
|
| |
libOpenAL.so on Android
|
|
|
|
|
|
|
|
|
|
|
|
| |
[21..22] only, link against c++_static!
NDK >= r19 using API > 22: 'U __register_atfork'
__register_atfork; # introduced=23
See <https://github.com/android/ndk/issues/964>
libc++_shared.so is not provided on device,
either link statically or deploy the shared library.
We link statically now.
|
|
|
|
|
|
|
|
| |
adoption llvm: clang libc++
All properties are now aligned with gluegen/make/scripts/setenv-android-tools.sh.
User must set ANDROID_NDK, ANDROID_HOST_TAG, ANDROID_API_LEVEL and one of
NDK_CPU_X86_64, NDK_CPU_X86, NDK_CPU_ARM64, NDK_CPU_ARM_V7A, NDK_CPU_ARM.
|
|
|
|
|
|
|
|
|
| |
For an unknown reason, passing '-Wl,--fix-cortex-a8' to LINKER_FLAGS directly
in the dead else branch ('NDK_CPU_ARM64' is 'ON')
causes its usage when issuing 'try_compile'.
Hence we pass these flags via ARM32_LINKER_OPTS and ARM64_LINKER_OPTS
via invocation (JOAL's ant build.xml).
|
| |
|
|
|
|
| |
-I${ANDROID_NDK_SYSROOT}/usr/include
|
|
|