我编译运行C++_GUI_Programming_with_Qt_4_的第一个例子Hello Qt的过程中
make后出现错误提示 undefined reference to 'QBasicAtomicInt::deref()'
请问这是什么错误 是链接库的问题吗
//hello.cpp代码
#include <QApplication>
#include <QLabel>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QLabel *label = new QLabel("Hello Qt!");
label->show();
return app.exec();
}