sed指令在某一行后插入:sed-i‘/指定行内容/a\插入行‘filename#sed-i‘/set-e/a\exportUSE_CCACHE=1‘/etc/init.d/tomcat7在某一行前插入:sed-i‘/指定行内容/i\插入行‘filename#sed-i‘/set-e/i\exportUSE_CCACHE=1‘/etc/init.d/tomcat7删除空行:#sed-i‘/^$/d‘filename通过命..
分类:
其他好文 时间:
2016-10-11 22:08:42
阅读次数:
143
yum install ccache mkdir /home/linghegu/.bin cd vi ~/.bash_profile ln -s /usr/bin/ccache gcc ln -s /usr/bin/ccache g++ vim ~/.bash_profile PATH=/home/
分类:
系统相关 时间:
2016-02-01 18:40:51
阅读次数:
382
本文主要介绍开发过程中用到的比较好的工具。 1、ccache 高速C/C++编译工具,能够5-10倍提升编译速度。详解 2、cppcheck cppcheck是一个C/C++代码静态分析工具,只检测那些编译器通常无法检测到的bug类型。详解 3、wireshark 好用的抓包工具。详...
分类:
其他好文 时间:
2015-11-06 17:41:08
阅读次数:
241
一、简介 项目越来越大,重新编译整个项目是一件很费时的事,总结可以帮助提速方法,如下: 1)tmpfs: 解决IO瓶颈,充分利用本机内存资源 2)make -j: 充分利用本机计算资源 3)distcc: 利用多台计算机资源 4)ccache: 减少重复编译相同代码的时间 参考:http://www...
分类:
系统相关 时间:
2015-09-10 15:56:53
阅读次数:
181
将此脚本置于android 工程源码根目录,即可用此脚本起build,且取名为compile.sh
#!/bin/bash
#
# Copyright (c) 2012, The Linux Foundation. All rights reserved.
#
# Redistribution and use in source and binary forms, with or w...
分类:
移动开发 时间:
2015-07-28 13:05:50
阅读次数:
148
该题的思路很明确就是将中缀表达式转换为后缀表达式,然后通过后缀表达式来求值。
class Solution {
public:
int calculate(string s) {
vector postorder;
stack ccache;
stack icache;
string tmp;
...
分类:
其他好文 时间:
2015-07-14 13:35:57
阅读次数:
83
Yii的自带缓存都继承CCache 类, 在使用上基本没有区别缓存基础类 CCache 提供了两个最常用的方法:set() 和 get()。要在缓存中存储变量 $value,我们选择一个唯一 ID 并调用 set() 来存储它:Yii::app()->cache->set($id, $value);...
分类:
其他好文 时间:
2015-06-08 12:57:55
阅读次数:
144
ubuntu下用户及用户组原文链接 http://blog.sina.com.cn/s/blog_4e4ee8ed0100tr4j.html创建组: $sudo addgroup ccache创建用户: $sudo useradd ccache -g ccache -M创新wfz用户并创建HOME目...
分类:
系统相关 时间:
2014-11-15 16:55:21
阅读次数:
157
1. android自带的ccache版本(2.4版本)过低,是无法支持以上的功能的,需要使用新版ccache。
2. 最新的ccache请到http://ccache.samba.org/download.html下载
3. 下载解压之后,在linux底下进入ccache目录,运行:
./configure
./make
./strip --strip-all ccache...
分类:
移动开发 时间:
2014-10-11 15:23:45
阅读次数:
174