I'm trying to compile gcc 4.5.2 on mac os x 10.6.6 with the following configure command:
../gcc-452a/configure --prefix=/builds/dist1/gcc/452a --enable-languages=c,objc,c++,fortran --with-pkgversion='Builds, build 452a'
It compiles fine (make -j3) up to a certain part, but then it says:
checking for working strncmp... yes
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating testsuite/Makefile
config.status: creating config.h
config.status: executing default commands
Adding multilib support to Makefile in ../../../../gcc-452a/libiberty
with_multisubdir=i386
make: *** [all] Error 2
Please help
If it makes any difference "current_stage" = stage3
--with-pkgversion=Builds, build 452a, by removing or quoting it. – reinierpost Mar 18 '11 at 10:13make -j1build - with such setting, the specific error will be just before*** [all] Error 2. – osgx Mar 19 '11 at 9:54-j1suggestion. – Bavarious Apr 16 '11 at 9:52