分类:
2008-03-21 16:54:22
在交叉编译的时候总是使用configure --host=arm-linux
嘿嘿但是在CONFIGURE中有很多的测试程序是不可以在HOST上运行的就会出现: error: cannot run test
program while cross compiling
类似的错误,可以使用CACHEFILE解决这个问题,还要谢谢ABSURD兄的文章给我的指导。
我是这样解决的第一步:记录下错误的地方如:checking abstract socket namespace... configure: error: cannot run test program while cross compiling
注意到abstract socket namespace在configure中查找abstract socket可以看到类似这样的结构
echo "$as_me:$LINENO: checking abstract socket namespace" >&5
echo $ECHO_N "checking abstract socket namespace... $ECHO_C" >&6
if test "${ac_cv_have_abstract_sockets+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
其中ac_cv_have_abstract_sockets是我们要查找的变量
在命令行输入echo ac_cv_have_abstract_sockets=yes>arm-linux.cache执行
然后输入./configure --host=arm-linux --cache-file=arm-linux.cache
K这样就搞定了
再次感谢http://blog.csdn.net/absurd兄!
另外:
1:
fedora 中 /sbin/init 3 关闭图形界面
有些 configure 依赖lib 编译,并且需要pkg-config 支持,可能
需要设定 PKG_CONFIG_PATH 环境变量, 此变量指向所依赖lib 的xxx.pc
描述文件, xxx.pc描叙lib 的特性,如
prefix=/develop/upnp/mips_libupnp
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=/develop/upnp/mips_libupnp/include
Name: libupnp
Description: Linux SDK for UPnP Devices
Version: 1.6.3
ibs: -L${libdir} -lupnp -lthreadutil -lixml
Cflags: -pthread -I${includedir}/upnp
2:
configure 脚本判断lib 是否存在时是采用编译C 文件的方法,所以有时候交叉编译时
可通过修改 configure文件通过测试,具体是添加 -I 或者-L 指明位置。
有些通过 --host 指定目标平台,--host=mipsel-linux (libupnp)
有些通过 --cross-prefix=mipsel-linux- --cross-compile(ushare) 指定,
具体可通过configure --help/-h 查看
http://hi.baidu.com/lihuanhai1943/blog/item/f0dbe54a6e12e92708f7efd1.html