making up for cvs export not creating empy dirs
[linux_from_scratch.git] / BOOK / chapter06 / gcc-inst.xml
blob42772db7298ee494f4d03f27ca7f9ecfce872d53
1 <sect2>
2 <title>Installation of GCC</title>
4 <para>This package is known to behave badly when you have changed its default
5 optimization flags (including the -march and -mcpu options). GCC is best
6 left alone, so we recommend you unsetting CFLAGS, CXXFLAGS and other
7 such variables/settings that would change the default optimization that
8 it comes with.</para>
10 <para>Install GCC by running the following commands. These commands will build
11 the C and C++ compiler. Other compilers are available within the gcc
12 package. If you want to build all the other available compilers too,
13 leave out the --enable-languages=c,c++ option in the configure command.
14 See the GCC documentation for more details on which additional compilers
15 are available.</para>
17 <para>Note: the build of other compilers is not tested by the people 
18 who actively work on LFS.</para>
20 <para><screen><userinput>patch -Np1 -i ../gcc-&gcc-patch-version;.patch &amp;&amp;
21 mkdir ../gcc-build &amp;&amp;
22 cd ../gcc-build &amp;&amp;
23 ../gcc-&gcc-version;/configure --prefix=/usr --enable-shared \
24 &nbsp;&nbsp;&nbsp;--enable-languages=c,c++ --enable-threads=posix &amp;&amp;
25 make bootstrap &amp;&amp;
26 make install &amp;&amp;
27 cd /lib &amp;&amp;
28 ln -sf ../usr/bin/cpp &amp;&amp;
29 cd /usr/lib &amp;&amp;
30 ln -sf ../bin/cpp &amp;&amp;
31 cd /usr/bin &amp;&amp;
32 ln -sf gcc cc &amp;&amp;
33 rmdir /usr/*-gnu/include &amp;&amp;
34 rmdir /usr/*-gnu</userinput></screen></para>
36 </sect2>