我正在尝试为ARM交叉编译linphone。我使用
配置它./configure --host=arm-linux-gnueabi --with-gnu-ld --disable-static --disable-glib --with-osip=/home/user/linphone_wheezy --with-readline=/home/user/linphone_wheezy SPEEX_CFLAGS="-I/home/user/linphone_wheezy/include" SPEEX_LIBS="-L/home/user/linphone_wheezy/lib -lspeex" SPEEXDSP_CFLAGS="-I/home/user/linphone_wheezy/include" SPEEXDSP_LIBS="-L/home/user/linphone_wheezy/lib -lspeexdsp" CC=$CROSS_TOOLCHAIN/bin/arm-linux-gnueabi-gcc --disable-video --enable-gtk_ui=no
configure脚本成功执行,但是当我运行make时,链接时出现以下错误:
libtool: link: unable to infer tagged configuration
libtool: link: specify a tag with `--tag'
我尝试过添加
--tag=CC and --tag=LD
但没有成功。有人可以提一下这个错误吗?