ChinaUnix.net
相关文章推荐:

qt 编译gif库

各位大侠帮忙看看是哪里出错了! ports安装和按照下边步骤安装,均不支持jpeg格式 安装 libjpeg tar zxvf jpegsrc.v6b.tar.gz cd jpeg-6b ./configure --enable-static --enable-shared make make test make install 安装 libpng tar zxvf libpng-1.2.8-config.tar.gz cd libpng-1.2.8-config ./configure make make install 安装 zlib tar zxvf zlib-1.2.2.tar.gz cd zlib-1.2.2 ./configure make make install 安装 freetyp...

by handman - 服务器应用 - 2007-09-26 16:44:52 阅读(4733) 回复(4)

相关讨论

代码如下 #include #include #include #include #include <qtextStream> int main() { string="F:\\qtex\\20131115_1815.txt"; QFile qfile( QString::Local8Bit( strfile.c_str( ) ) ); cout << "CEFileUtil::readEFile:" << strfile << endl; qtextStream qfs( &qfile ); while (!qfs.atEnd( )) { const QString qstrline = qfs.readLine( ).simplified(...

by lyw08china - C/C++ - 2013-11-21 10:58:27 阅读(2245) 回复(3)

输入./configure 后出现如下情况 不知咋回事? Type 'c' if you want to use the Commercial Edition. Type 'o' if you want to use the Open Source Edition. o This is the qt for Linux/X11 Open Source Edition. You are licensed to use this software under the terms of the Lesser GNU General Public License (LGPL) versions 2.1. You are also licensed to use this software under the terms of the GNU General P...

by wenny198561 - 嵌入式开发 - 2011-10-22 15:45:57 阅读(1755) 回复(0)

编译好的qt怎么做出适合自己的界面??? 可以直接应用吗?? 编译好的qt和没编译qt有什么区别???

by vdsvs - Linux环境编程 - 2011-07-16 22:29:56 阅读(3768) 回复(8)

本帖为大家提供网友已编译好的qt开源版下载(含Debug),如果哪位网友能提供qt开源版某个平台下某个编译器的configure通用配置的含Debug的已编译好的所有文件(除examples、demos及doc目录,及src下将临时文件已删除),请发信给我 [email=XChinux@163.com]XChinux@163.com[/email] 以获取文件上传方式信息。 注:文件压缩格式推荐使用各自平台下最通用的格式,比如Win下用zip格式压缩、Linux下用tar.gz格式压缩。 [XChinux提供...

by leecapacity - Linux文档专区 - 2009-06-06 03:23:14 阅读(1055) 回复(0)

2009-4-30 tangke 目前由于debian官方还没有出qt-4.5的版本,自己等不及了,因为qt官方同时也放出了QCreate1.0的linux版的source code,而QCreate1.0必须要有qt-4.5的支持,所以必须自己操刀了。 1.首先从qt官方把qt-4.5的source code下下来,放在 /home/root/qt-x11-opensource-4.5 2.下载qcreate1.0的src,放在 /home/root/qt-creator-1.0.0-src 3.进入/home/root/qt-x11-opensource-4.5目录开始configure...

by mumutouv - Linux文档专区 - 2009-04-30 11:38:53 阅读(685) 回复(0)

过程: 看了一个文章: ===================================== [color="#555555"]谢论坛内各位的帮助,我的qt/e2.3.10和qtopia2.1.1终于全部编译通过. 下面是jpeg和uuid编译方法.是我自己总结的,希望对大家有点儿用. [color="#555555"]为qt-embedded添加jpeg的交叉编译方法for arm 下载jpegsrc.v6b.tar.gz 解压 tar -xzf jpegsrc.v6b.tar.gz cd jpeg-6b [root@SJTU-LIUJIAN jpeg-6b]# ./configure --enable-shared [root@SJ...

by gofiend - Linux文档专区 - 2008-04-20 12:45:26 阅读(1174) 回复(0)

刚丛trolltech的网站上下的qt4.1.4 for X11版本,./configure运行正常,在编译的时候提示Qapplication.o出错,缺少X*.h等文件,在网上查了说是我的debian系统缺少一个libxorg-x11-devel或与之等价的东西.我不知道怎么装啊,请高手指教

by pcs306 - 程序开发 - 2006-06-26 07:53:20 阅读(866) 回复(1)

刚丛trolltech的网站上下的qt4.1.4 for X11版本,./configure运行正常,在编译的时候提示Qapplication.o出错,缺少X*.h等文件,在网上查了说是我的debian系统缺少一个libxorg-x11-devel或与之等价的东西.我不知道怎么装啊,请高手指教

by pcs306 - Linux环境编程 - 2006-06-26 07:53:20 阅读(1821) 回复(1)

比如用qt写的最简单的例子,编译-c通过,可以生成.o文件 但是连接的时候出错,我用到所有的qt的类和函数都有unresolved symbols错误。 我是这么做的 g++ -c prog.cpp -o prog.o g++ prog.o -o prog -L/qt的路径 -lqt -lqt-mt -lqutil 请问应该怎么写才对呢?

by freerpg - C/C++ - 2004-08-02 20:14:29 阅读(2382) 回复(4)

比如用qt写的最简单的例子,编译-c通过,可以生成.o文件 但是连接的时候出错,我用到所有的qt的类和函数都有unresolved symbols错误。 我是这么做的 g++ -c prog.cpp -o prog.o g++ prog.o -o prog -L/qt的路径 -lqt -lqt-mt -lqutil 请问应该怎么写才对呢?

by freerpg - 其他UNIX - 2004-09-16 18:05:46 阅读(1972) 回复(2)