UNIX網路程式設計 卷2 原始碼使用

uestczshen發表於2016-11-18
1. 下載原始碼,W. RichardStevens的主頁:http://www.kohala.com/start/
wget http://www.kohala.com/start/unpv22e/unpv22e.tar.gz -P/usr/local/src 
2. 解壓
tar xvf /usr/local/src/unpv22e.tar.gz -C/root/bin 
3. 編譯庫檔案
cd /root/bin/unpv22e/  
./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  
66 // add by jcq  
67 typedef unsigned long ulong_t;  
68 #define MSG_R 0400  
69 #define MSG_W 0200 
新增_GNU_SOURCE定義
vi config.h  
#define _GNU_SOURCE 
編譯warpunix.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 -  
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 
即可編譯各個子目錄下的程式碼

相關文章