Re: Unable to keep working cross-compilation toolchain
Posted: Tue Nov 10, 2009 11:20 pm
Hi hastaelnabo2000,
It looks like your configuration sets the -Werror flag for gcc by default.
If you add the switch --disable-werror to the configure flags, maybe that might help:
change:
../../${UTILS}/configure --prefix=${PREFIX} --target=${TARGET} \
--with-sysroot=${SYSROOT} 2>&1 | tee configure.out
into:
../../${UTILS}/configure --prefix=${PREFIX} --target=${TARGET} --disable-werror \
--with-sysroot=${SYSROOT} 2>&1 | tee configure.out
and see if that makes any difference.
About yacc: shouldn't be a problem, bison will do.
HTH,
marcelr
It looks like your configuration sets the -Werror flag for gcc by default.
If you add the switch --disable-werror to the configure flags, maybe that might help:
change:
../../${UTILS}/configure --prefix=${PREFIX} --target=${TARGET} \
--with-sysroot=${SYSROOT} 2>&1 | tee configure.out
into:
../../${UTILS}/configure --prefix=${PREFIX} --target=${TARGET} --disable-werror \
--with-sysroot=${SYSROOT} 2>&1 | tee configure.out
and see if that makes any difference.
About yacc: shouldn't be a problem, bison will do.
HTH,
marcelr