From: Renegade M. <dra...@sp...> - 2001-09-04 01:34:23
|
>> I am using /usr/local/sh-linux as my target directory. I already had >> /usr/local/sh-linux/bin as the first entry in the PATH. Should i have a >> different directory in the PATH as well? > >Hmm, no that should be correct. Could you post your configure command >lines for binutils and gcc? Here is the complete list of commands that i have run so far. If it would help to see the output of the configure and make commands, i can post them to a web page upon request. Anything i'm doing wrong here? HOST=i686-pc-linux-gnu TARGET=sh-linux BASE=/home/build PREFIX=/usr/local/${TARGET} PATH=${PREFIX}/bin:${PATH} # binutils cd ${BASE} tar -xvIf binutils-010513.tar.bz2 gunzip -c sh-binutils-010513-rela+arch+opc.diff.gz | patch -p0 mkdir build-binutils cd build-binutils ../binutils-010513/configure --target=${TARGET} --prefix=${PREFIX} -v \ 2>&1 | tee -a configure.out make -w all install \ 2>&1 | tee -a make.out # gcc cd ${BASE} tar -xvIf gcc-core-20010514.tar.bz2 tar -xvIfgcc-g++-20010514.tar.bz2 gunzip -c sh-gcc-20010514-arch+pic+wind+misc.diff.gz | patch -p0 mkdir build-gcc cd build-gcc ../gcc-20010514/configure --host=${HOST} --target=${TARGET} \ --without-headers --with-newlib -v \ 2>&1 | tee -a configure.out make -w all-gcc install-gcc \ 2>&1 | tee -a make.out |