lfs/chapter06/gcc-inst.xml

27 lines
775 B
XML
Raw Normal View History

<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>