我正在尝试使用 qmake/qt 在 MacOSX 上构建 x86_64 应用程序。我能够在 QT4 中编译,但不能在 QT5 中编译。
无论如何,在运行 qmake 生成我的 makefile 等之后:
qmake -recursive -spec macx-clang app.pro CONFIG+='release static'
然后当我运行 make 时,最终我在这里结束:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -headerpad_max_install_names -arch x86_64 -Wl,-dead_strip -framework Cocoa -framework Carbon -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk -mmacosx-version-min=10.6 -o (...author's note--tons of .o files here...) -L../lib -L../../debug -F/Users/seth/workspace/qt5.1.0//5.1.0/clang_64/lib -lprotobuf -framework Security -framework SecurityInterface -framework ApplicationServices -framework CoreFoundation -lxml2 -lbz2 -lxar -framework ScriptingBridge -L/Users/seth/workspace/qt5.1.0//5.1.0/clang_64/plugins/iconengines -lssl -lcrypto -lz -lFLAC -framework Carbon -framework QtWebKitWidgets -framework QtQuick -framework QtQml -framework QtNetwork -framework QtCore -framework QtGui -framework QtOpenGL -framework QtWidgets -framework QtPrintSupport -framework Cocoa -framework QtWebKit -framework QtSql -framework QtSensors -framework QtSvg -framework QtXml -framework OpenGL -framework AGL
ld: '__ZN3Log16DebugE7QStringS3_' in debug/Log.o contains undefined reference for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
我不明白“架构 x86_64 的未定义参考”是什么意思,这当然是问题的核心。在阅读了其他一些线程后,有人建议我链接的库不是 x86_64,但是在检查和重新检查之后,我找不到该过程中涉及的任何非 x86_64 库。
使用命令 Mach-O 64-bit object x86_64
检查后,我构建的所有 .o 文件都是.file
对于我试图引用的所有库(例如 libcrypto):
Non-fat file: ../lib/libcrypto.a is architecture: x86_64
当然,所有的 mac 框架库都支持 32/64 位。
有人对我如何进一步调试有任何建议吗?