lfs/chapter06/gcc-inst.xml
Thomas Balu Walter 81a47c0302 You
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@337 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
2001-03-19 16:02:50 +00:00

27 lines
775 B
XML

<sect2>
<title>Installation of GCC</title>
<para>
After a user unpacked the gcc-2.95.2.1 archive he doesn't enter the
newly created
gcc-2.95.2.1 directory but stays in the /usr/src directory. Install GCC by
running the following commands:
</para>
<blockquote><literallayout>
<userinput>mkdir /usr/src/gcc-build &amp;&amp;</userinput>
<userinput>cd /usr/src/gcc-build &amp;&amp;</userinput>
<userinput>../gcc-2.95.2.1/configure --prefix=/usr \</userinput>
<userinput>&nbsp;&nbsp;&nbsp;--with-gxx-include-dir=/usr/include/g++
\</userinput>
<userinput>&nbsp;&nbsp;&nbsp;--enable-shared
--enable-languages=c,c++ &amp;&amp;</userinput>
<userinput>make bootstrap &amp;&amp;</userinput>
<userinput>make install</userinput>
</literallayout></blockquote>
</sect2>