ChinaUnix.net
相关文章推荐:

Qt notifyInternal 出错

[root@localhost hello_example]# make arm-linux-g++ -o hello hello.o -L/pxa256/qt-2.3.7//lib -lm -lqte /pxa256/qt-2.3.7//lib/libqte.so: undefined reference to `pthread_create' /pxa256/qt-2.3.7//lib/libqte.so: undefined reference to `pthread_mutexattr_destr oy' /pxa256/qt-2.3.7//lib/libqte.so: undefined reference to `pthread_mutexattr_setty pe' /pxa256/qt-2.3.7//lib/libqte.so: un...

by gofiend - Linux文档专区 - 2008-05-07 11:12:33 阅读(793) 回复(0)

相关讨论

今天刚装了qtcreator,新建了一个工程,对话框的,什么都没有做,本来build,run应该出现对话框的, 可是报了一个错误,截图如下 大家帮忙给看看怎么办 软件默认安装后一切路径应该都对的啊为什么说库里那个东西没有定义啊?

by 在梅边376450483 - Linux新手园地 - 2010-06-18 22:08:01 阅读(1274) 回复(4)

tar xfz qt-embedded-2.3.7.tar.gz cd qt-2.3.7 export qtDIR=$PWD export qtEDIR=$qtDIR export PATH=$qtDIR/bin:$PATH export LD_LIBRARY_PATH=$qtDIR/lib:$LD_LIBRARY_PATH ./configure -qconfig -qvfb -depths 4,8,16,32 This is the qt/Embedded Free Edition. You are licensed to use this software under the terms of the GNU General Public License (GPL). Type 'G' to view the GNU General Public License. Type...

by andylao - GUI编程 - 2008-04-21 14:53:25 阅读(2473) 回复(0)

是交叉工具链hybus-arm-linux-R1.1 tmake 生成 makefile文件 然后 make 时出出了问题 arm-linux-g++ -o hello -L/pxa255/qt-2.3.7//lib -lm -lqte /usr/local/hybus-arm-linux-R1.1/arm-linux/bin/ld: cannot find -lstdc++ collect2: ld returned 1 exit status make: *** [hello] Error 1 然后判断是hybus-arm-linux-R1.1没有libstdc++库,然后copy了我自己交叉编译的库中的libstdc++.a: [root@localhost 2....

by gofiend - Linux文档专区 - 2008-04-19 10:14:48 阅读(680) 回复(0)

如题:错误消息如下: make[1]: Entering directory `/usr/local/gui/qt-2.3.8' cd src/moc; make make[2]: Entering directory `/usr/local/gui/qt-2.3.8/src/moc' make[2]: 没有什么可以做的为 `all'。 make[2]: Leaving directory `/usr/local/gui/qt-2.3.8/src/moc' rm -f bin/moc cp src/moc/moc bin/moc make -f src-mt.mk make[2]: Entering directory `/usr/local/gui/qt-2.3.8' (not building threaded qt) make[2]: Leav...

by letueo - Linux环境编程 - 2008-12-07 21:37:29 阅读(2344) 回复(2)

菜鸟刚接触qt, 按<qt3>>写了个hello qt! 如下: #include #include int main(int argc, char *argv[]) { QApplication app (argc, argv); QLabel *label = new QLabel("Hello qt!", 0); app.setMainWidget(label); label->show(); return app.exec(); } 在make 时出现很多 undefined reference 报错, 请帮忙!!!! [root@ws q...

by ldrun - GUI编程 - 2007-02-12 15:58:06 阅读(7119) 回复(4)

在编译安装qt-x11使出上上述错误,安装网上查的方法,重新设置参数,./configure --prefix=/usr/local/tslib/ --host=arm-linux ac_cv_func_malloc_0_nonnull=yes 但是最后执行还是这个问题对原问题没有更改

by liu95533 - Linux新手园地 - 2012-05-06 21:59:07 阅读(1298) 回复(3)
by ricky_pc - 嵌入式开发 - 2010-06-21 10:19:54 阅读(1950) 回复(5)

各位我使用了最原始的Hello world 开始学习,可是qmake [project] ;qmak; make; 出错,信息和代码如下: -------------------------------------- #include #include int main( int argc, char **argv ) { QApplication a( argc, argv ); QPushButton hello( "Hello world!", 0 ); hello.resize( 100, 30 ); a.setMainWidget( &hello ); hello.show(); return a.exe...

by TurboDisk - GUI编程 - 2006-03-28 15:19:57 阅读(2589) 回复(5)

详细情况: Microsoft (R) Program Maintenance Utility Version 9.00.21022.08 Copyright (C) Microsoft Corporation. All rights reserved. "C:\Program Files\Microsoft Visual Studio 9.0\VC\BIN\nmake.exe" -f Makef ile.Release Microsoft (R) Program Maintenance Utility Version 9.00.21022.08 Copyright (C) Microsoft Corporation. All rights reserved. d:\qt\4.7.3\bin\uic.exe dialogs\qfiledialo...

by stone421 - GUI编程 - 2011-11-09 14:39:33 阅读(2408) 回复(0)

小弟是最近才开始玩Linux的,装了个Fedora 15,然后想要在其中安装qt4,但是进行./configure时,出现 You don't seem to have "make" or "gmake" in PATH,感觉好像意思是make的路径没有加入到PATH里面去,导致程序找不到make,网上也搜了不少相关的问题,都好像没能得到有效的解决啊~我换了个Ubuntu 11.04,也遇到了同样的问题,还请大家指导一二~谢谢!!

linux安装问题

by jcxx01 - Linux环境编程 - 2011-09-10 22:47:34 阅读(2891) 回复(5)