centos下配置编译apue.h、unp.h

apue.3e下载地址:
http://www.apuebook.com/code3e.html
1、先将该文件src.3e.tar.gz下载
2、获得root权限,解压源码至指定位置:
tar -zxv -f src.3e.tar.gz -C /usr/src/ 
3、此时转到apue.3e目录下
cd /usr/src/apue.3e
4、make
5、cp ./include/apue.h /usr/include/
cp ./lib/libapue.a /usr/local/lib/
然后该环境就配置好了,可以运行书上的例子。



unpv13e.tar.gz下载地址:
http://www.unpbook.com/src.html
1、先将unpv13e.tar.gz下载
2、获得root权限,解压该文件
tar -zxvf unpv13e.tar.gz -C /usr/src/ 
3、此时转到apue.3e目录下
cd /usr/src/unpv13e
4、然后执行下面的命令
./configure
cd lib
make
cd ../libfree
make
此时环境就配置好了

你可能感兴趣的:(centos下配置编译apue.h、unp.h)