在Qt4中的desinger中涉及到控件Q3ListBox,但是在make的时候出现提示错误,是说无法解析到外部符号等等。原因是:因为这个是Qt3的控件,Qt4并没有做到很好的支持,所以必须加上QT3的suuport在.pro文件中加入一行:QT += qt3support;再次进行make后就可以...
分类:
其他好文 时间:
2014-08-05 10:49:09
阅读次数:
215
最近在迁移公司的make系统到cmake上,发现cmake的function参数很奇怪。例如,如果我们向一个function传递list作为参数,在function中,形参会变成如下状况:
set(SRC)
list(APPEND SRC a.cpp b.cpp)
list(APPEND SRC c.cpp d.cpp)
function(tst_arguments src_list)
me...
分类:
其他好文 时间:
2014-08-05 03:05:18
阅读次数:
317
1.安装环境操作系统:ubuntu14.04xen版本:xen4.42.依赖包的安装在安装xen之前先进行依赖包的安装,在不停得尝试之后,总结出以下需要安装的依赖包。susoapt-get install gcc make binutils zlib1g-dev python-devsudo apt...
分类:
其他好文 时间:
2014-08-04 23:56:08
阅读次数:
983
487-3279
Businesses like to have memorable telephone numbers. One way to make a telephone number memorableis to have it spell a memorable word or phrase. For example, yo...
分类:
其他好文 时间:
2014-08-04 21:41:34
阅读次数:
395
下载 git-1.8.2.tar.gztar -zvxf git-1.8.2.tar.gzcd git-1.8.2.2sudo make prefix=/usr/local/git allsudo make prefix=/usr/local/git installgit –version 查看版本...
分类:
其他好文 时间:
2014-08-04 21:12:07
阅读次数:
264
系统:Cenos6.5X64软件:tengine-2.0.3.tar.gzpcre-8.33.tar.bz2mysql-5.6.12.tar.gzphp-5.5.14.tar.bz2一、安装nginx1.1安装nginx所需的pcre-devel库,使nginx支持HTTPRewrite模块[root@node3pcre-8.33]#./configure--prefix=/home/webserver/pcre&&make&&make..
分类:
其他好文 时间:
2014-08-04 18:18:29
阅读次数:
402
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
int main()
{
pair p;
p = make_pair(1,2) ;
pair p1(1,"sttttaa");...
分类:
编程语言 时间:
2014-08-04 11:09:07
阅读次数:
236
“Control panel” => “Ease of Access” => “Ease of Access Center” => “Make the computer easier to see” => “Set the thickness of the blinking cursor”. 8 p...
不相交集合 故名思意就是一种含有多个不相交集合的数据结构。典型的应用是确定无向图中连通子图的个数。其基本操作包括:Make-Set(x):建立一个新的集合,集合的成员是x;Union(x,y): 将包含x和y的集合合并为一个集合;Find-Set(x): 返回指向包含x的集合的指针;下面是一个例子,...
分类:
其他好文 时间:
2014-08-04 06:13:46
阅读次数:
218
gcc升级到4.8后 gdb版本太低不能用,所以要相应的升级gdb
在http://www.gnu.org/software/gdb/download/下载gdb7.6
放到/opt/gdb7.6目录下
然后 ./configure --prefix=/opt/gdb7.6/gdb
make
sudo make install
注意:最后一步直接make install...
分类:
数据库 时间:
2014-08-03 20:41:35
阅读次数:
298