* Brendon Costa wrote on Wed, Dec 13, 2006 at 11:32:35PM CET: > Ralf Wildenhues wrote: > > >(Side note: I do hope your cross-compiler is named something like > >i386-mingw32-g++ rather than plain g++.) > > > Actually I am using the non-prefixed version. I guess i should use the > prefixed version to avoid possible confusion huh...
You should use --host=i386-mingw and not specify CXX at all: configure will search for ${host_alias}-g++ before trying to use g++, and thus choose the right compiler for you. Likewise all other tools that are checked by AC_CHECK_TOOL, e.g., CC, NM, STRIP, AR, LD. Cheers, Ralf _______________________________________________ http://lists.gnu.org/mailman/listinfo/libtool