|
指在BLFS阶段而不是在LFS阶段安装的为了编译内核而安装的简易版的.
我一直安装不成功,发现最后的症状是因为在/usr/include/bits/libc-lock.h这个头文件里面的一段:
/* Fortunately Linux now has a mean to do locking which is realtime
safe without the aid of the thread library. We also need no fancy
options like error checking mutexes etc. We only need simple
locks, maybe recursive. This can be easily and cheaply implemented
using futexes. We will use them everywhere except in ld.so since
ld.so might be used on old kernels with a different libc.so. */
#ifdef _LIBC
# include <lowlevellock.h>
# include <tls.h>
# include <pthread-functions.h>
#endif
但是lowlevelock.h tls.h pthread-functions.h 这几个文件根本 就找不到,所以在编译gcc-2.95.3的时候就一直不能通过了.比较郁闷. |
|