>> [r...@ps3 gcc-4.4.0]# ./configure --prefix=/usr >> --mandir=/usr/share/man --infodir=/usr/share/info >> --with-as=/usr/bin/ppu-as --with-ld=/usr/bin/ppu-ld --enable-threads >> --with-system-zlib --disable-checking --enable-__cxa_atexit >> --disable-libunwind-exceptions --enable-languages=c,c++,fortran,ada >> --disable-nls --enable-clocale=gnu >> --enable-version-specific-runtime-libs --with-long-double-128 >> --program-prefix=ppu- --disable-bootstrap --host=ppu >> --build=powerpc64-unknown-linux-gnu --target=ppu >> checking build system type... powerpc64-unknown-linux-gnu >> checking host system type... Invalid configuration `ppu': machine >> `ppu' not recognized >> configure: error: /bin/sh ./config.sub ppu failed
> You can configure PPU like any other 64-bit PowerPC processors, > for example, by specifying --target=powerpc64-unknown-linux-gnu. The above configure can become just this: [r...@ps3 gcc-4.4.0]# ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-as=/usr/bin/ppu-as --with-ld=/usr/bin/ppu-ld --enable-languages=c,c++,fortran --disable-nls --enable-version-specific-runtime-libs --with-long-double-128 --program-prefix=ppu- --disable-bootstrap (and I'm not sure man and info dirs need to be given, you should have symlinks from /usr/man and /usr/info). paolo