分类: LINUX
2010-05-14 19:33:47
1. 从下载源码包
2. 解压缩,并认真阅读REAME并设置目录
To build the source, edit the Make.defines.* file for your system and set WKDIR to the pathname of the tree containing the source code. Then justrun "make"
3. 查看你的UNIX系统是什么,用命令”uname –s ”我的系统显示是linux所以修改apue.2e\Make.define.linux文件如下:
WKDIR=/home/MichaelYao/work/apue.2e(/home/用户名/源码包解压后放置的目录)
4. make, 若提示ARG_MAX未定义,则
在/usr/include/limits.h中加上#difine ARG_MAX 4096即可
5. 若不想重新全部编译,只编译某目录下的源文件.(以source\file目录为例)
|