1.在./configure的时候遇到 can not know the host type ,you must specilist the host type的问题
说白了,是无法链接到正确的c编译器,由于makefile通常用cc=gcc来make文件,因此先找到gcc编译器的位置,通常文件显示为gcc,gcc236等等
然后做一个符号链接 ln -s gcc236 cc
2.在make的时候遇到错误:
usr/include/linux/wireless.h:886: error: ‘IFNAMSIZ’ undeclared here (not in a function)
发现是2.6内核的文件变化所导致的
Add the following line to /usr/include/linux/wireless.h at the very top:
#include
事实再次证明,重要的有用的信息全在英文网站上。