|
|
host os : rh 9 Linux From Scratch: 版本 5.0
first : i release -core, -g++, -testsuite at the same dir $LFS/sourcese/gcc-3.3.1
lfs:/sources/gcc-3.3.1$ expect -c "spawn ls"
spawn ls
lfs:/sources/gcc-3.3.1$ patch -Np1 -i ../gcc-3.3.1-no_fixincludes-2.patch
lfs:/sources/gcc-3.3.1$ patch -Np1 -i ../gcc-3.3.1-specs-2.patch
/* it well done ,perfectly! */
lfs:/sources/gcc-3.3.1$mkdir ../gcc-build
lfs:/sources/gcc-3.3.1$cd ../gcc-build
lfs:/sources/gcc-build$../gcc-3.3.1/configure --prefix=/tools \
> --with-local-prefix=/tools \
> --enable-clocale=gnu --enable-shared \
> --enable-threads=posix --enable-__cxa_atexit \
> --enable-languages=c,c++
.
.
.
/* it also well done! */
lfs:/sources/gcc-build$make
.
.
.
make[3]: Leaving directory `/mnt/lfs/sources/gcc-build/i686-pc-linux-gnu/libstdc++-v3/testsuite'
make[3]: Entering directory `/mnt/lfs/sources/gcc-build/i686-pc-linux-gnu/libstdc++-v3'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/mnt/lfs/sources/gcc-build/i686-pc-linux-gnu/libstdc++-v3'
make[2]: Leaving directory `/mnt/lfs/sources/gcc-build/i686-pc-linux-gnu/libstdc++-v3'
make[1]: Leaving directory `/mnt/lfs/sources/gcc-build/i686-pc-linux-gnu/libstdc++-v3'
// make[3]: Nothing to be done for `all-am'. ??? |
|