问题: couldn't found -lwexin 等与第三方库有关的关键词报错,如上图。 解决方法:在工程文件中删掉第三方库的引用,然后再重新添加进来。command+B,OK。
分类:
其他好文 时间:
2014-07-07 12:40:21
阅读次数:
199
nagios监控Linux/windows常用配置,以snmp、nrpe实现1#'process-host-perfdata'commanddefinition2definecommand{3command_nameprocess-host-perfdata4#command_line/usr/bi...
分类:
移动开发 时间:
2014-07-07 10:35:03
阅读次数:
369
1. 在工具栏上找“ToggleBreadcrumb”按钮,单击使其恢复未选中状态即可2. 如果找不到这个按钮。通过菜单“Window->Customize Perspective”打开对话框,在“Command”标签页,选中复选框“Java Editor Presentation->toggle ...
分类:
系统相关 时间:
2014-07-07 10:19:56
阅读次数:
339
xargs命令xargs命令把从stdin接受到的数据重新格式化。大多数 Linux 命令都会产生输出:文件列表、字符串列表等。但如果要使用其他某个命令并将前一个命令的输出作为参数该怎么办例如:格式:$command | xargsxargs命令可以将多行输入转换成单行输出$cat example....
分类:
其他好文 时间:
2014-07-03 21:35:19
阅读次数:
337
语法:findpath-option[-print][-exec-okcommand]{}\;#-print将查找到的文件输出到标准输出#-execcommand{}\;-----将查到的文件执行command操作,{}和\;之间有空格#-ok和-exec相同,只不过在操作前要询用户-namefilename#查找名为filename的文件-perm#按执行权限来查找-useruser..
分类:
系统相关 时间:
2014-07-03 14:24:25
阅读次数:
278
Command Line JVM SettingsThe proxy settings are given to the JVM via command line arguments:$> java -Dhttp.proxyHost=proxyhostURL -Dhttp.proxyPort=pro...
分类:
编程语言 时间:
2014-07-02 20:13:36
阅读次数:
173
在centos 5下安装软件遇到的问题,google了一圈,是因为系统没有安装编译器,那安装就是了,嘿嘿。解决办法,在SSH下输入下面的命令yum -y install gcc automake autoconf libtool makelinux xinetd 服务不能启动:[root@capaa...
分类:
Web程序 时间:
2014-07-02 17:34:23
阅读次数:
288
:g/^$/d:g will execute a command on lines which match a regex. The regex is 'blank line' and the command is :d (delete)g 会执行一个正则表达式的命令,能删除文本里面的空行。
分类:
其他好文 时间:
2014-07-02 14:30:51
阅读次数:
282
今天碰到一个比较坑爹的问题,在centos上用yum安装编译环境,运行:
yum -y install make gcc gcc-c++ kernel-devel m4 ncurses-devel openssl-devel
结果导致编译cocos2d-x出现错误:
cc1plus: error: unrecognized command line option "-std=c++11"...
分类:
其他好文 时间:
2014-07-02 08:23:01
阅读次数:
290
Union-Find
动态连接问题描述:
给定一个n个序列的对象,有两种操作:
-Union command:连接两个对象;
-Find/connected query:两个对象是否连接(有路径)
算法实现方式
1.用一个数组保存着每个对象所在的connected component,这种方式可以快速进行FIND,但是在union操作时需要遍历整...
分类:
其他好文 时间:
2014-07-02 07:10:59
阅读次数:
287