0

我正在尝试使用 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 位。

有人对我如何进一步调试有任何建议吗?

4

1 回答 1

1

折腾了一天,终于找到了。

链接抱怨的方法中有这个:

qt_mac_execute_apple_script

这个方法在qt5中是不存在的。

另外,在有问题的文件的前面,我有这个:

extern bool qt_mac_execute_apple_script(const QString &script, AEDesc *ret);

如果我评论这些行,错误就会消失。

所以基本上,缺少符号是一个非常糟糕的编译器错误——因为编译器不足以指出实际问题超出了模糊的架构声明;可能会变得更糟,因为我正在构建与外部静态耦合的应用程序。

于 2013-08-23T21:27:43.447 回答