mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-19 13:37:39 +00:00
f62e21bdab
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@442 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
24 lines
632 B
XML
24 lines
632 B
XML
<sect2>
|
|
<title>Installation of GCC</title>
|
|
|
|
<para>
|
|
Install GCC by running the following commands:
|
|
</para>
|
|
|
|
<blockquote><literallayout>
|
|
|
|
<userinput>mkdir /usr/src/gcc-build &&</userinput>
|
|
<userinput>cd /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> --enable-shared
|
|
--enable-languages=c,c++ &&</userinput>
|
|
<userinput>make bootstrap &&</userinput>
|
|
<userinput>make install</userinput>
|
|
|
|
</literallayout></blockquote>
|
|
|
|
</sect2>
|
|
|