构建简单的 Qt5 应用程序时出错

Error building simple Qt5 application

本文关键字:出错 应用程序 Qt5 简单 构建      更新时间:2023-10-16

我在Mac OS X 10.7.5上安装了Qt 5.0.0(qt-mac-opensource-5.0.0-clang-offline.dmg),现在我正在尝试使用Qt Creator 2.6.1编译"Hello World"应用程序。

构建过程抱怨找不到目录:/Users/karlphillip/Qt5.0.0/5.0.0/clang_64/qtbase/lib,后跟几个链接错误:

clang++ -c -pipe -mmacosx-version-min=10.6 -O2 -Wall -W -fPIE -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -I/Users/karlphillip/Qt5.0.0/5.0.0/clang_64/mkspecs/macx-clang -I. -I/Users/karlphillip/Qt5.0.0/5.0.0/clang_64/include -I/Users/karlphillip/Qt5.0.0/5.0.0/clang_64/include/QtGui -I/Users/karlphillip/Qt5.0.0/5.0.0/clang_64/lib/QtGui.framework/Versions/5/Headers -I/Users/karlphillip/Qt5.0.0/5.0.0/clang_64/include/QtCore -I/Users/karlphillip/Qt5.0.0/5.0.0/clang_64/lib/QtCore.framework/Versions/5/Headers -I. -I/System/Library/Frameworks/OpenGL.framework/Versions/A/Headers -I/System/Library/Frameworks/AGL.framework/Headers -o main.o main.cpp
clang++ -headerpad_max_install_names -mmacosx-version-min=10.6 -o hello_qt.app/Contents/MacOS/hello_qt main.o -F/Users/karlphillip/Qt5.0.0/5.0.0/clang_64/lib -framework QtGui -F/Users/karlphillip/Qt5.0.0/5.0.0/clang_64/qtbase/lib -framework QtCore -framework OpenGL -framework AGL
ld: warning: directory not found for option '-F/Users/karlphillip/Qt5.0.0/5.0.0/clang_64/qtbase/lib'
Undefined symbols for architecture x86_64:
"QApplication::QApplication(int&, char**, int)", referenced from:
_main in main.o
"QLabel::QLabel(QString const&, QWidget*, QFlags<Qt::WindowType>)", referenced from:
_main in main.o
"QWidget::show()", referenced from:
_main in main.o
"QPushButton::QPushButton(QString const&, QWidget*)", referenced from:
_main in main.o
"QApplication::exec()", referenced from:
_main in main.o
"QPushButton::~QPushButton()", referenced from:
_main in main.o
"QLabel::~QLabel()", referenced from:
_main in main.o
"QApplication::~QApplication()", referenced from:
_main in main.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [hello_qt.app/Contents/MacOS/hello_qt] Error 1

请务必注意,路径/Users/karlphillip/Qt5.0.0/5.0.0/clang_64/qtbase/lib无效,因为目录 qtbase 不存在。工作路径是/Users/karlphillip/Qt5.0.0/5.0.0/clang_64/lib.我不是指我项目中任何地方的qtbase,所以这可能是由 qmake 添加的。

事实证明,无效的qtbase路径实际上是一个最初在QTBUG-28336上报告的Qt错误。

链接问题是由于我的项目没有与QtWidgets链接,这是我们从Qt5开始必须做的事情。这是通过将以下行添加到 .pro 文件来实现的:

QT += widgets

我遇到了同样的问题,老实说,我并不知道如何解决它。

我想/猜猜我将所需的文件夹从源复制到匹配的"clang_64"文件夹中,这完成了这项工作。

这么龙仔