You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/opt/android/ndk/android-ndk-r11/toolchains/x86_64-4.9/prebuilt/linux-x86_64/bin/../lib/gcc/x86_64-linux-android/4.9/../../../../x86_64-linux-android/bin/ld: warning: skipping incompatible /opt/android/ndk/android-ndk-r11/platforms/android-21/arch-x86_64/usr/lib/libm.so while searching for m
/opt/android/ndk/android-ndk-r11/toolchains/x86_64-4.9/prebuilt/linux-x86_64/bin/../lib/gcc/x86_64-linux-android/4.9/../../../../x86_64-linux-android/bin/ld: warning: skipping incompatible /opt/android/ndk/android-ndk-r11/platforms/android-21/arch-x86_64/usr/lib/libc.so while searching for c
/opt/android/ndk/android-ndk-r11/toolchains/x86_64-4.9/prebuilt/linux-x86_64/bin/../lib/gcc/x86_64-linux-android/4.9/../../../../x86_64-linux-android/bin/ld: warning: skipping incompatible /opt/android/ndk/android-ndk-r11/platforms/android-21/arch-x86_64/usr/lib/libdl.so while searching for dl
If I create a symlink pointing to /opt/android/ndk/android-ndk-r11/platforms/android-21/arch-x86_64/usr/lib64, named /opt/android/ndk/android-ndk-r11/platforms/android-21/arch-x86_64/usr/lib (so, replacing the lib folder with the lib64 one), errors disappear and compile process works fine.
Is it just a toolchain config error, or am I missing something in the config?
The text was updated successfully, but these errors were encountered:
Did this work with r10e? I think this is something that should work, but knowing that would help track down the problem.
As a temporary workaround, you can use build/tools/make-standalone-toolchain.sh. It'll build a toolchain that can be used in this way. There are some known issues (read: it's pretty much broken) if you're using libc++ though.
While building a x86_64 app, with following settings:
Following errors appear:
If I create a symlink pointing to
/opt/android/ndk/android-ndk-r11/platforms/android-21/arch-x86_64/usr/lib64
, named/opt/android/ndk/android-ndk-r11/platforms/android-21/arch-x86_64/usr/lib
(so, replacing thelib
folder with thelib64
one), errors disappear and compile process works fine.Is it just a toolchain config error, or am I missing something in the config?
The text was updated successfully, but these errors were encountered: