- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要为 Android arm64-v8a 设备构建 Qt 应用程序。
这些设备应该能够运行 QtCreator 支持的 armv7a 二进制文件(参见 Is arm64-v8a compatible with armeabi-v7a?)。但是我的应用程序在 arm64-v8a 上运行时在 arm64-v8a 上运行时发生崩溃,所以我想直接为 arm64-v8a 构建我的应用程序并再次测试。
经过一些搜索,我最终尝试使用以下命令配置 Qt (qt-everywhere-5-7):
我在 Windows 7 上工作。
configure -xplatform android-g++ -debug-and-release -no-icu -no-wmf-backend -no-compile-examples -opengl desktop -nomake tests -nomake example -android-ndk B:\Android\android-ndk-r11b -android-sdk B:\Android\adt-bundle-windows-x86_64-20131030\sdk -android-arch arm64-v8a -android-ndk-host arm64-v8a -android-toolchain-version 4.9 -no-warnings-are-errors -platform win32-g++
我在我的路径中添加了 mingw530_32(由 QtCreator 4.0.3/Qt5.7 安装和使用的那个)。
然后我得到这个错误:
process_begin: CreateProcess(NULL, B:\Android\android-ndk-r11b/toolchains/aarch64-linux-android-4.9/prebuilt/arm64-v8a/bin/aarch64-linux-android-g++ -c -ffunction-sections -funwind-tables -fstack-protector -fomit-frame-pointer -fstrict-aliasing -funswitch-loops -finline-limit=300
-DANDROID -Wa,--noexecstack -std=c++11 -g -g -fno-omit-frame-pointer -Wall -Wno-psabi -W -fPIC -I. -isystem B:\Android\android-ndk-r11b\sou
rces\cxx-stl\gnu-libstdc++\4.9\include -isystem B:\Android\android-ndk-r11b\sources\cxx-stl\gnu-libstdc++\4.9\libs\arm64-v8a\include -isyste
m B:\Android\android-ndk-r11b\platforms\android-21\arch-arm64\usr\include -IB:\Qt\qt_everywhere\5.7.0\qt-everywhere-opensource-src-5.7.0\qtb
ase\mkspecs\android-g++ -o arch.obj arch.cpp, ...) failed.
make (e=2): Le fichier spÚcifiÚ est introuvable.
mingw32-make: *** [arch.obj] Error 2
Could not find output file 'libarch.so' or 'arch' in B:/Qt/qt_everywhere/5.7.0/qt-everywhere-opensource-src-5.7.0/qtbase/config.tests/arch :
No such file or directory
ERROR: Qt requires a C++11 compiler and yours does not seem to be that.
Please upgrade.
B:\Android\android-ndk-r11b/toolchains/aarch64-linux-android-4.9/prebuilt/
没有arm64-v8a
文件夹,只有windows-x86_64
存在...但我不知道应该修改哪个选项让 Qt 脚本选择这个...
注意:
-android-ndk-host windows-x86_64
替换 -android-ndk-host arm64-v8a
并得到错误 Impossible de trouver B :\Qt\qt_everywhere\5.7.0\qt-everywhere-opensource-src-5.7.0\qtbase\config.tests\arch\*~
最佳答案
android NDK 主机参数指的是主机平台,如您所说,它是 windows-x86_64。使用 -android-arch 参数指定 objective-c PU 架构。
确保在重新配置之前清除所有遗留的构建 Artifact 。还要确保 Cygwin 不在您的 PATH 中,因为这会弄乱构建。要检查,请尝试在命令行上运行“where sh.exe”。我认为您看到的第二个错误可能是由于此。
此外,“-opengl desktop”没有任何意义,因为您不是为桌面编译。不过,我认为这不会造成任何伤害。
这里是关于交叉编译 Qt for Android 的更多信息:http://wiki.qt.io/Android
请注意:请确保您使用的是 Android NDK r10e,因为后续版本中的 gcc 存在严重错误,会导致所有应用程序崩溃。
以下是有关 Qt for Android 已知问题的更多信息:https://wiki.qt.io/Qt_for_Android_known_issues
从 jpo38 编辑:实际上 openGL 选项会导致编译问题。还必须禁用 qtdeclarative。最终的工作配置命令是
configure -xplatform android-g++ -debug-and-release -no-icu -no-wmf-backend -no-compile-examples -android-ndk B:\Android\android-ndk-r11b -android-sdk B:\Android\adt-bundle-windows-x86_64-20131030\sdk -android-ndk-host windows-x86_64 -android-toolchain-version 4.9 -no-warnings-are-errors -platform win32-g++ -android-arch arm64-v8a -skip qtdeclarative
然后Qt编译了所有的.so文件。还没有尝试用它们运行任何程序....
关于android - 如何为 Android arm64-v8a xcompile Qt?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39827117/
我是一名优秀的程序员,十分优秀!