glfs/general/prog/gcc/gcc-inst1.xml
Tushar Teredesai b02f257b38 Fixes for bash 2.05a users, and other misc changes in descriptions
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@737 af4574ff-66df-0310-9fd7-8a98e5e911e0
2003-02-28 16:01:18 +00:00

18 lines
523 B
XML

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