glfs/general/prog/gcc/gcc-inst1.xml
Larry Lawrence 1a686a13c9 added gnat and gcc recompile
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@95 af4574ff-66df-0310-9fd7-8a98e5e911e0
2002-08-16 15:43:44 +00:00

18 lines
502 B
XML

<sect2>
<title>Installation of gcc without Ada</title>
<para>Install gcc by running the following commands:</para>
<para><screen><userinput>unset CFLAGS &amp;&amp;
unset CXXFLAGS &amp;&amp;
mkdir ../gcc-build &amp;&amp;
cd ../gcc-build &amp;&amp;
../gcc-&gcc-version;/configure --prefix=/usr --enable-shared \
--enable-languages=c,c++,objc,f77 --enable-threads=posix \
--with-slibdir=/lib --enable-__cxa_atexit &amp;&amp;
make bootstrap &amp;&amp;
make install</userinput></screen></para>
</sect2>