I am trying to create an expat (2.0.0) XML parsing library for an embedded ARM machine working with busybox 1.13, while in time. / configure I get an error message:
checking if libtool supports shared libraries... no
I pointed my gcc, g ++, ar, ranlib, strip, etc., and they are all found in the configure tool, and I have the most recent libtool (2.4.2 at the time of this writing) on โโUbuntu 12.10, so why Does he say libtool does not support shared libraries? My configure command:
./configure --host=arm --enable-shared CC=arm-none-linux-gnueabi-gcc CXX=arm-none-linux-gnueabi-g++ AR=arm-none-linux-gnueabi-ar RANLIB=arm-none-linux-gnueabi-ranlib STRIP=arm-none-linux-gnueabi-strip
... and complete call output:
configure: WARNING: If you wanted to set the
Can someone explain to me how configure determines if libtool supports the creation of shared libraries?
arm cross-compiling libtool expat-parser
Alex marshall
source share