mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-31 20:42:34 +08:00
a40092ca72
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@634 af4574ff-66df-0310-9fd7-8a98e5e911e0
18 lines
545 B
XML
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 &&
|
|
unset CXXFLAGS &&
|
|
mkdir ../gcc-build &&
|
|
cd ../gcc-build &&
|
|
../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 &&
|
|
make bootstrap &&
|
|
make install-no-fixedincludes</userinput></screen></para>
|
|
|
|
</sect2>
|
|
|