1、下载安装包: wget
http://redis.googlecode.com/files/redis-2.6.13.tar.gz2、解压: tar axvf
redis-2.6.13.tar.gz3、进入文件夹:cd redis-2.6.13/4、编译:make5、编译安装: make ins...
分类:
编程语言 时间:
2014-06-06 20:15:44
阅读次数:
455
关于斐波那契数列,由于数据量比较小, 直接打表了,代码写的比较戳#include #include
#include using namespace std;class FibonacciDiv2{public: vector table; void
make_table(){ ...
分类:
其他好文 时间:
2014-06-06 13:18:11
阅读次数:
305
在对Android进行编译时,用的ji,使用图形界面来对整个系统进行裁剪。当然,除了这条指令,还包括很多配置命令,比如make defconfig, make oldconfig等。这里主要就make menuconfig的执行过程进行解析。...
分类:
移动开发 时间:
2014-06-05 00:12:54
阅读次数:
371
“helloworld”驱动实现过程(ARM板上)
1、 在/home/sxy/目录下新建hello_1文件夹,在此文件夹下编写hello.c和Makefile文件(假设已经编写好了),make生成模块文件;
PS:hello.ko就是用于需要使用的驱动模块。
hello.c代码:
Makefile代码:
注意Makefile文件中的黑色填充部分:
①选择交叉编译器...
分类:
其他好文 时间:
2014-06-03 04:45:00
阅读次数:
238
An iterative way of writing quick sort:
#include
#include
#include
using namespace std;
void quickSort(int A[], int n) {
stack> stk;
stk.push(make_pair(0, n-1));
while (!stk.empty()) {
pair ...
分类:
其他好文 时间:
2014-06-03 00:16:43
阅读次数:
357
By reducing your bookmarks to show only the
icons, you can access more of them from the Bookmarks bar. This works great for
sites with recognizable fa...
分类:
其他好文 时间:
2014-06-02 17:39:03
阅读次数:
276
2010-08-0813:33cannotfind-lltdl,编译php又出错了php在make过程中出现“usrbinldcannotfindlltdl”错误,详细错误如下:/usr/bin/ld:cannotfind-lltdlcollect2:ldreturned1exitstatusmake:***[libphp5.la]Error1在Google上搜了好久,终于找到答案,原来是在编辑php时添加的“..
分类:
Web程序 时间:
2014-06-01 16:44:44
阅读次数:
241
正如大家说知道的GCC并不支持"make uninstall". 一种推荐安装方式就是把GCC 安装在你自己指定的一个路径,当你不需要某个GCC版本的时候你只需要移除对应版本即可。
假设你已经有一个老的版本在你的系统中,最简单的范式就是:
1)添加PPA(Personal Package Archive)到里的程序仓库(repositories )里
2更新...
分类:
其他好文 时间:
2014-06-01 15:52:33
阅读次数:
304
DVR_RDK编译报错
abnormal termination of /opt/dm8168/dvr_rdk/../ti_tools/cgt_dsp/cgt6x_7_3_5//bin/cmp6x
make[2]: *** [/opt/dm8168/dvr_rdk/../dvr_rdk/build/dvr_rdk/obj/ti816x-evm/c6xdsp/debug/MAIN_APP_c6xdsp_pe674.oe674] Error 1
make[1]: *** [apps] Error 2
m...
分类:
其他好文 时间:
2014-06-01 09:37:14
阅读次数:
204
CMake是一个很强大的工具,在这里以一个学习者的身份来和大家一起学习,可以让大家更快的学习和领会这个强大工具...
分类:
其他好文 时间:
2014-05-31 17:53:15
阅读次数:
292