Linux 入门精要 Linux 历史 1970年: linux元年,起始开发者为 Kenneth Lane Thompson 和 Dernis Ritchie, 现在知道为啥很多计算机是用1970年1月1日0点0分0秒作为记录时间的起点了吧。 1983年 GNU计划公布,主导者为 Richard ...
分类:
系统相关 时间:
2016-11-23 06:47:27
阅读次数:
307
参考: http://clang-analyzer.llvm.org/annotations.html https://github.com/gcc-mirror/gcc/blob/master/libsanitizer/include/sanitizer/common_interface_defs ...
分类:
其他好文 时间:
2016-07-11 23:54:56
阅读次数:
3234
一、生成configure过程中各文件之间的关系图 二、详细介绍 autoscan: 扫描源代码以搜寻普通的可移植性问题,比如检查编译器,库,头文件等,生成文件configure.scan,它是configure.ac的一个雏形。 aclocal:根据已经安装的宏,用户定义宏和acinclude.m ...
分类:
系统相关 时间:
2016-06-05 14:01:31
阅读次数:
734
Autoconf和Automake使用 一、生成Makefile流程图 二、具体实例 执行命令顺序:autoscan; aclocal; autoconf; autoheader; automake --add-missing; ./configure; make; ./helloworld; 1、 ...
分类:
系统相关 时间:
2016-05-31 18:35:48
阅读次数:
301
fdsaf[root@node02php-5.5.20]#ls
acinclude.m4configure.inlibtoolmissingREADME.EXT_SKELREADME.STREAMSsnapshot
aclocal.m4CREDITSLICENSEmkinstalldirsREADME.GIT-RULESREADME.SUBMITTING_PATCHstamp-h.in
buildextltmain.shmodulesREADME.input_filterREADME.TESTINGstub...
分类:
其他好文 时间:
2016-04-11 14:33:04
阅读次数:
157
主要的工具有autoscan, aclocal, autoheader, autoconfig,automake1 .创建c源文件hello.c1 #include 2 3 int main(){4 return 0;5 }2.执行autoscan命令 这是目录下会多出configure....
分类:
其他好文 时间:
2015-12-13 20:26:11
阅读次数:
129
从helloworld入手 我们从大家最常使用的 例子程序helloworld开始. 下面的 过程如果简单地说来就是 : 新建三个文件: helloworld.c configure.in Makefile.am 然后执行:aclocal; autoconf; automake ...
分类:
其他好文 时间:
2015-12-07 18:29:06
阅读次数:
149
1、autoscan在源码目录下执行autoscan,生成configure.scan,重命名为configure.in或者configure.ac,然后编辑文件内容:===============configure.in内容开始=====================# -*- Autoconf...
分类:
其他好文 时间:
2015-12-05 12:39:38
阅读次数:
154
源码地址:https://github.com/google/snappy
下载 git clone https://github.com/google/snappy
编译
进入snappy源码目录,执行命令: ./autogen.sh
报错 “./autogen.sh: line 3: aclocal: command not found”
通过http://superuser.com/q...
分类:
移动开发 时间:
2015-08-08 18:17:05
阅读次数:
145
安 装Mesa时,最后一个错误报“WARNING: 'aclocal-1.14' is missing on your system.”,虽然是个Warning,但是无法进行下一步make,所以必须解决。根据warning给的提示以及网上搜的信息判断,这是一个时间 戳变化导致的系统以为文件被修改,所...
分类:
系统相关 时间:
2015-07-30 10:56:57
阅读次数:
1497