我有一个非常基本的问题GNU/Libtool
。我的项目是由构建GNU/autotools
并包含由构建的共享对象GNU/Libtool
。我想i386
在机器上编译共享对象x86-64
,所以我这样做:
$ ./configure --build=i386
checking for a BSD-compatible install... /usr/bin/install -c
...
checking whether to build shared libraries... no
checking whether to build static libraries... yes
...
config.status: executing depfiles commands
config.status: executing libtool commands
$
配置脚本告诉我不支持共享库,make
命令失败。如何解决这个交叉编译问题?
我应该在Libtool 手册中找到答案吗?