Hello Thomas, Thomas Petazzoni wrote:
3. Configure with the following line: CC=/usr/local/xtools/arm-unknown-linux-uclibcgnueabi/bin/arm-linux-gcc \ STRIP=/usr/local/xtools/arm-unknown-linux-uclibcgnueabi/bin/arm-linux-strip \ ./configure --target=arm-linux --host=arm-linux --build=i386-pc-linux-gnu
I'm not sure if it solves your problem, but it is a bad habit to set environment variables before ./configure, instead set them at commandline so configure has a chance to detect them. In your case it would mean:
./configure CC=/usr/local/xtools/arm-unknown-linux-uclibcgnueabi/bin/arm-linux-gcc \ STRIP=/usr/local/xtools/arm-unknown-linux-uclibcgnueabi/bin/arm-linux-strip \ --target=arm-linux --host=arm-linux --build=i386-pc-linux-gnu Hope that helps. Cheers, Peter -- Peter Johansson svndigest maintainer, http://dev.thep.lu.se/svndigest yat maintainer, http://dev.thep.lu.se/yat _______________________________________________ Autoconf mailing list Autoconf@xxxxxxx http://lists.gnu.org/mailman/listinfo/autoconf