Details
-
Bug
-
Resolution: Incomplete
-
P2: Important
-
None
-
5.14.0, 5.14.1
-
None
Description
If I try to compile my application for ARMv7, the build system uses wrong version of my library. There is a mismatch between armeabi-v7a and arm64-v8a. I have precompiled shared libraries for all architectures that I want to include during APK build process. To do this I have this code in my .pro file:
LIBS += -L$$quote($$PWD/3rdparty/taglib/lib/$${ANDROID_TARGET_ARCH}) -ltag
ANDROID_EXTRA_LIBS = $$quote($$PWD/3rdparty/taglib/lib/$${ANDROID_TARGET_ARCH}/libtag.so)
This will work for arm64-v8a but if I try to compile for armeabi-v7a, it will fail. Here the correct path is used:
C:\app\Android\SDK\ndk-bundle/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++ target armv7a-linux-androideabi21 -fno-limit-debug-info -Wl,-soname,libMuzika_armeabi-v7a.so -lOpenSLES -Wl,build-id=sha1 -Wl,-no-undefined -Wl,-z,noexecstack -shared -o libMuzika_armeabi-v7a.so @armeabi-v7a\object_script.libMuzika_armeabi-v7a.so.Armeabi-v7a -LC:/Moje/QtProjects/Muzika/3rdparty/taglib/lib/armeabi-v7a -ltag
But when the library is added to the resulting APK, it tries to use the wrong version:
Skipping "C:/Moje/QtProjects/Muzika/3rdparty/taglib/lib/arm64-v8a/libtag.so", architecture mismatch
So the library is not added to the output APK and the application crashes right after start because of the missing library.
I do believe it has something to with the behavior described in this bug report: QTBUG-81249.