diff options
Diffstat (limited to 'chapter05/gcc-inst.xml')
-rw-r--r-- | chapter05/gcc-inst.xml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/chapter05/gcc-inst.xml b/chapter05/gcc-inst.xml index c7832bd96..5ff7c5473 100644 --- a/chapter05/gcc-inst.xml +++ b/chapter05/gcc-inst.xml @@ -8,16 +8,11 @@ Install GCC by running the following commands: <blockquote><literallayout> <userinput>mkdir $LFS/usr/src/gcc-build &&</userinput> <userinput>cd $LFS/usr/src/gcc-build &&</userinput> - <userinput>../gcc-2.95.2.1/configure --prefix=/usr \</userinput> - <userinput> --with-gxx-include-dir=/usr/include/g++ - \</userinput> + <userinput>../gcc-&gcc-version;/configure --prefix=/usr \</userinput> <userinput> --enable-languages=c,c++ --disable-nls &&</userinput> <userinput>make -e LDFLAGS=-static bootstrap &&</userinput> - <userinput>make prefix=$LFS/usr local_prefix=$LFS/usr/local - \</userinput> - <userinput> gxx_include_dir=$LFS/usr/include/g++ - install &&</userinput> + <userinput>make prefix=$LFS/usr install &&</userinput> <userinput>cd $LFS/lib &&</userinput> <userinput>ln -s ../usr/bin/cpp &&</userinput> |