checking build system type... configure: error: cannot guess build type; you must specify one

今天在用configure生成Makefile时,出现了如下错误:

checking build system type... configure: error: cannot guess build type; you must specify one

我用的命令是./configure --host=arm-linux- --prefix=/txk/build/install


根据出错提示“ 无法猜测编译 操作系统类型,请指定一个! 


于是我就加了一个--build=arm-linux参数就ok了


./configure --host=arm-linux- --prefix=/txk/build/install --build=arm-linux


你可能感兴趣的:(makefile,makefile)