UNIX網絡編程 卷2 源代碼環境搭建 以及一些錯誤處理
1. 下載源碼
W. Richard Stevens的主頁:http://www.kohala.com/start/
下載unpv22e.tar.gz到 /usr/local/src 目錄
unpv22e.tar.gz可以到Linux公社資源站下載:
------------------------------------------分割線------------------------------------------
免費下載地址在 http://linux.linuxidc.com/
用戶名與密碼都是www.linuxidc.com
具體下載目錄在 /2017年資料/2月/9日/ UNIX網絡編程 卷2 源代碼環境搭建/
下載方法見 http://www.linuxidc.com/Linux/2013-07/87684.htm
------------------------------------------分割線------------------------------------------
2. 解壓
tar xvf /usr/local/src/unpv22e.tar.gz -C /root/bin
備注:一定要在/root/bin文件夾下,未嘗試不在這個文件夾下,在第4步會報錯。無法生成/libunpipc.a文件
3. 編譯庫文件
cd /root/bin/unpv22e/ //備注:可能需要在root。不然權限不夠
./configure
編輯生成config.h文件,注釋以下幾行
vi config.h
56 // #define uint8_t unsigned char
57 // #define uint16_t unsigned short
58 // #define uint32_t unsigned int
添加MSG_R和MSG_W定義
vi config.h
65 // add by jcq
66 typedef unsigned long ulong_t; //備注:此處,有的在前面加了#define ,我沒有加,喪可以編譯的。
67 #define MSG_R 0400
68 #define MSG_W 0200
添加_GNU_SOURCE定義
vi config.h
#define _GNU_SOURCE
在unpv22e/lib目錄下找到文件wrapunix.c------------網上把這個文件名字全部都搞錯了
編譯wrapunix.c,使用mkstemp函數替換mktemp函數
cd lib
181 void
182 Mktemp(char *template)
183 {
184 if (mkstemp(template) == NULL || template[0] == 0)
185 err_quit("mktemp error");
186 }
編譯生成libunpipc.a
cd lib
make
4. 構建自己的編寫代碼的目錄
mkdir -p /root/bin/unpv2
cd - //備注:這邊最好 cd unpv2,不然下一步報錯
cp /root/bin/unpv22e/libunpipc.a /root/bin/unpv22e/config.h /root/bin/unpv22e/Make.defines .
5. 編譯各個目錄自己的文件
復制各個子目錄下得*.h頭文件和Makfile文件,然後執行
cp /root/bin/unpv22e/dir/*.h /root/bin/unpv22e/dir/Makefile /root/bin/unpv2
make filename
即可編譯各個子目錄下的代碼
對於可能的報錯 請參考以下鏈接:
Unix網絡編程(卷二)unpv 源碼下載及編譯報錯解決 http://www.linuxidc.com/Linux/2012-03/56274.htm
《UNIX網絡編程.卷2:進程間通信(第2版)》[PDF] 下載見 http://www.linuxidc.com/Linux/2013-01/77936.htm