I'm trying to build a GCC 4.4.2 cross compiler for an arm-elf target
(using binutils 2.19.1) on Fedora 12 x86_64 with the following
configure command:
> ../gcc-4.4.2/configure --prefix=/opt/arm-elf-gcc-4.4.2 \
--target=arm-elf --enable-languages=c --disable-libssp
The configure command works fine, but running "make" fails with the
following error:
> make
...
checking for a 64-bit type... unsigned long long
checking for pid_t... no
checking for library containing strerror... configure: error: Link
tests are not allowed after GCC_NO_EXECUTABLES.
make[1]: *** [configure-target-libiberty] Error 1
make[1]: Leaving directory `/home/tobias/src/gcc/build/arm-eabi/gcc'
make: *** [all] Error 2
I've successfully built many earlier versions (including 4.4.1) using
the same command line without any problems. I've searched the mailing
list and the web but not managed to find anything useful.
Am I doing something wrong, or is this a bug?
/Tobias