william

Keep Calm and Markdown.

Unix Network Programming 代码学习

网络编程的圣经

Chap.0 安装源代码

安装步骤

1
2
3
4
5
6
7
8
9
## git clone git@github.com:williamlfang/unix-network-programming-v3.git
cd unix-network-programming-v3-master
./configure

cd lib         # build the basic library that all programs need
make           # use "gmake" everywhere on BSD/OS systems

cd ../libfree  # continue building the basic library
make
0%