Hello. When specifying --target on PPC OS X 10.4, it seems that binutils doesn't produce any binaries when compiled. Is this expected behaviour? Process: $ export TARGET=i386-apple-darwin $ export PREFIX=/usr/local/gcc-4.2.3-x-i386 $ export PATH=$PATH:$PREFIX/bin $ mkdir build-binutils $ cd build-binutils $ ../binutils-2.18/configure --target=$TARGET --prefix=$PREFIX checking build system type... powerpc-apple-darwin8.11.0 checking host system type... powerpc-apple-darwin8.11.0 checking target system type... i386-apple-darwin checking for a BSD-compatible install... /usr/bin/install -c checking whether ln works... yes checking whether ln -s works... yes checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking for gnatbind... gnatbind checking for gnatmake... gnatmake checking whether compiler driver understands Ada... yes checking how to compare bootstrapped objects... cmp --ignore-initial=16 $$f1 $$f2 *** This configuration is not supported in the following subdirectories: bfd binutils ld gas opcodes gprof (Any other directories should still work fine.) checking for bison... bison -y checking for bison... bison checking for gm4... gm4 checking for flex... flex checking for flex... flex checking for makeinfo... makeinfo checking for expect... expect checking for runtest... no checking for ar... ar checking for as... as checking for dlltool... no checking for ld... ld checking for lipo... lipo checking for nm... nm checking for ranlib... ranlib checking for strip... strip checking for windres... no checking for windmc... no checking for objcopy... no checking for objdump... no checking for i386-apple-darwin-cc... no checking for i386-apple-darwin-gcc... no checking for i386-apple-darwin-c++... no checking for i386-apple-darwin-g++... no checking for i386-apple-darwin-cxx... no checking for i386-apple-darwin-gxx... no checking for i386-apple-darwin-gcc... no checking for i386-apple-darwin-gcj... no checking for i386-apple-darwin-gfortran... no checking for i386-apple-darwin-ar... no checking for i386-apple-darwin-as... no checking for i386-apple-darwin-dlltool... no checking for i386-apple-darwin-ld... no checking for i386-apple-darwin-lipo... no checking for i386-apple-darwin-nm... no checking for i386-apple-darwin-objdump... no checking for i386-apple-darwin-ranlib... no checking for i386-apple-darwin-strip... no checking for i386-apple-darwin-windres... no checking for i386-apple-darwin-windmc... no checking where to find the target ar... pre-installed checking where to find the target as... pre-installed checking where to find the target cc... pre-installed checking where to find the target c++... pre-installed checking where to find the target c++ for libstdc++... pre-installed checking where to find the target dlltool... pre-installed checking where to find the target gcc... pre-installed checking where to find the target gcj... pre-installed checking where to find the target gfortran... pre-installed checking where to find the target ld... pre-installed checking where to find the target lipo... pre-installed checking where to find the target nm... pre-installed checking where to find the target objdump... pre-installed checking where to find the target ranlib... pre-installed checking where to find the target strip... pre-installed checking where to find the target windres... pre-installed checking where to find the target windmc... pre-installed checking whether to enable maintainer-specific portions of Makefiles... no checking whether -fkeep-inline-functions is supported... yes configure: creating ./config.status config.status: creating Makefile $ make all install (build output snipped for brevity, will supply full transcript on request) $ ls Makefile config.log config.status etc intl libiberty serdep.tmp $ ls $PREFIX info lib $ ls $PREFIX/lib libiberty.a $ ls $PREFIX/info configure.info standards.info Should I not have $PREFIX/bin, containing as, ld, nm etc? Any help would be appreciated.