diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-06-21 00:34:07 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-06-21 00:34:07 +0000 |
commit | 973b4f48ede4d1ec06cb59c70e53207a35465c81 (patch) | |
tree | 36df648edbbb765ac89a854cae8ee15a157f5e8c /chapter05/gcc-inst.xml | |
parent | 8453242b5691023e76320641ccda5eb699426dba (diff) |
Added --disable-shared to avoid the creation of libgcc_s.so* files
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@688 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/gcc-inst.xml')
-rw-r--r-- | chapter05/gcc-inst.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chapter05/gcc-inst.xml b/chapter05/gcc-inst.xml index 5ff7c5473..3c76b821f 100644 --- a/chapter05/gcc-inst.xml +++ b/chapter05/gcc-inst.xml @@ -10,7 +10,9 @@ Install GCC by running the following commands: <userinput>cd $LFS/usr/src/gcc-build &&</userinput> <userinput>../gcc-&gcc-version;/configure --prefix=/usr \</userinput> <userinput> --enable-languages=c,c++ --disable-nls - &&</userinput> + \</userinput> + <userinput> --disable-shared + &&</userinput> <userinput>make -e LDFLAGS=-static bootstrap &&</userinput> <userinput>make prefix=$LFS/usr install &&</userinput> <userinput>cd $LFS/lib &&</userinput> |