2002-08-16 23:43:44 +08:00
|
|
|
<sect2>
|
|
|
|
<title>Installation of gcc without Ada</title>
|
|
|
|
|
|
|
|
<para>Install gcc by running the following commands:</para>
|
|
|
|
|
2003-03-01 00:01:18 +08:00
|
|
|
<para><screen><userinput>unset CFLAGS
|
|
|
|
unset CXXFLAGS
|
2002-08-16 23:43:44 +08:00
|
|
|
mkdir ../gcc-build &&
|
|
|
|
cd ../gcc-build &&
|
|
|
|
../gcc-&gcc-version;/configure --prefix=/usr --enable-shared \
|
2002-12-20 06:18:08 +08:00
|
|
|
--enable-languages=c,c++,objc,f77,java --enable-threads=posix \
|
|
|
|
--with-slibdir=/lib --enable-__cxa_atexit --enable-clocale=gnu &&
|
2002-08-16 23:43:44 +08:00
|
|
|
make bootstrap &&
|
2003-01-31 09:35:28 +08:00
|
|
|
make install-no-fixedincludes</userinput></screen></para>
|
2002-08-16 23:43:44 +08:00
|
|
|
|
|
|
|
</sect2>
|
|
|
|
|