Hi. I'm trying to build GCC-4.8.0 MIPS cross compiler on MinGW. I've tried running the following: mkdir gcc-4.8.0-mips-obj cd gcc-4.8.0-mips-obj ../gcc-4.8.0/configure --prefix=$HOME/gcc-4.8.0-mips-bin --target=mips-elf --program-suffix=-mips --enable-checking --disable-nls --enable-languages=c make Then I got many "undefined reference to `libintl_*" errors. After reading http://www.gnu.org/software/gettext/FAQ.html#integrating_undefined I tried adding S["LIBINTL"]="-lintl" to gcc/config.status, and this worked around this problem. Is this a bug in the autoconf script or am I doing something wrong? Thanks, Amir