Libtool: link: failed to install tagged configuration

I am trying to cross-link linphone for ARM. I configure it with

./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

The script configuration is successful, but when I run make, I get the following binding error:

libtool: link: unable to infer tagged configuration
libtool: link: specify a tag with `--tag'

I tried to add

--tag=CC and --tag=LD

but without success. Can someone give some hint of this error?

+4
source share

Source: https://habr.com/ru/post/1589169/


All Articles