mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-31 12:32:13 +08:00
18 lines
502 B
XML
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 &&
|
||
|
unset CXXFLAGS &&
|
||
|
mkdir ../gcc-build &&
|
||
|
cd ../gcc-build &&
|
||
|
../gcc-&gcc-version;/configure --prefix=/usr --enable-shared \
|
||
|
--enable-languages=c,c++,objc,f77 --enable-threads=posix \
|
||
|
--with-slibdir=/lib --enable-__cxa_atexit &&
|
||
|
make bootstrap &&
|
||
|
make install</userinput></screen></para>
|
||
|
|
||
|
</sect2>
|
||
|
|