下载 glibc-2.14.1.tar.bz2 安装
# tar -xjf glibc-2.14.1.tar.bz2
# cd glibc-2.14.1
[root@chandao glibc-2.14.1]# mkdir build
[root@chandao glibc-2.14.1]# cd build/
[root@chandao build]# ../configure --prefix=/usr
[root@chandao build]# make -j4 //并发编译,4个任务同时进行,启用4个cpu去编译。提高编译速度
[root@chandao build]# make install