glfs/general/prog/gcc/gcc-inst1.xml
Larry Lawrence a40092ca72 make gcc install-no-fix-includes and remove old j2sdk files
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@634 af4574ff-66df-0310-9fd7-8a98e5e911e0
2003-01-31 01:35:28 +00:00

18 lines
545 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,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>