添加配置文件(makefile)的--host选项,怎么办?
我想构建一个armv7和armv7s库,但找不到主机选项。
bash
sh-3.2# ./configure.sh --help|grep host
sh-3.2#
http://www.pell.portland.or.us/~orc/Code/discount/discount-2.1.6.tar.bz2 感谢
答案 0 :(得分:2)
这个项目似乎没有使用经典的autotools方法,你有configure.ac
文件,创建configure
文件。
首先执行configure.sh
,然后在创建的CC
中修复AR
和Makefile
:
CC=cc -Wno-return-type -Wno-implicit-int -I.
这样的事情:
CC=arm-linux-gcc -Wno-return-type -Wno-implicit-int -I.
现在您可以调用make
。