0

我是 Qt 和 C++ 的新手,我想创建一个简单的项目。我写了这段代码:

#include <QString>

int main()
{
  QString str = "a,,b,c";

  return 0;
}

我像这样编译它:

g++ -o LeapMouse Leapmouse.cpp -I /home/dougui/Qt/5.1.1/gcc_64/include/QtCore -I /home/dougui/Qt/5.1.1/gcc_64/include -fPIE

我有这个错误:

/tmp/cc6umRmY.o: In function `QString::QString(char const*)':
Leapmouse.cpp:(.text._ZN7QStringC2EPKc[_ZN7QStringC5EPKc]+0x34): undefined reference to `QString::fromAscii_helper(char const*, int)'
/tmp/cc6umRmY.o: In function `QTypedArrayData<unsigned short>::deallocate(QArrayData*)':
Leapmouse.cpp:    (.text._ZN15QTypedArrayDataItE10deallocateEP10QArrayData[_ZN15QTypedArrayDataItE10deallocateEP10QArrayData]+0x1e): undefined reference to `QArrayData::deallocate(QArrayData*, unsigned long, unsigned long)'
collect2: error: ld returned 1 exit status

当我这样做时grep -ri 'fromAscii_helper' /home/dougui/Qt/5.1.1/gcc_64/include,您可以在此处看到该功能:

/home/dougui/Qt/5.1.1/gcc_64/include/QtCore/qstring.h:    static Data *fromAscii_helper(const char *str, int size = -1);

它应该包括在内。我错过了什么吗?是否可以将 Qt 的库包含到标准 C++ 项目中?

4

1 回答 1

3

在 C++ 中仅仅包括相关的头文件是不够的:当链接一个可执行文件时,你还需要指定相关的库和可能找到这些库的目录。我不知道 Qt 但根据您上面的编译器调用,我猜您需要添加类似的选项

-L/home/dougui/Qt/5.1.1/gcc_64/lib -lQtCore

第一个选项指定在哪里可以找到库,假设编译器默认不会在此目录中查找,第二个选项是定义符号的库的名称。我不知道这个库是如何真正被调用的:如果文件是libQtCore.alibQtCore.so选项-lQtCore添加了这个库供链接器搜索。但是,您可能需要QtCore用另一个名称替换。

于 2013-09-13T23:49:28.310 回答