| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 | <sect2><title> </title><para> </para></sect2><sect2><title>Installation of GCC</title><para>This package is known to behave badly when you have changed itsdefault optimization flags (including the -march and -mcpu options).Therefore, if you have defined any environment variables that overridedefault optimizations, such as CFLAGS and CXXFLAGS, we recommend unsettingor modifying them when building GCC.</para><para>We will be building the C and C++ compilers at this time, so you'llneed to unpack both the gcc-core and gcc-g++ tarballs. Other compilers areavailable in the full gcc package; instructions for building them may befound at <ulink url="&blfs-root;view/cvs/general/gcc.html"/>.</para><para><screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-no_fixincludes.patchpatch -Np1 -i ../gcc-&gcc-version;-mmap_test.patch</userinput></screen></para><para>It is recommended by the GCC installation documentation to build GCCin a dedicated directory outside of the source tree. Create the builddirectory:</para><para><screen><userinput>mkdir ../gcc-buildcd ../gcc-build</userinput></screen></para><para>Prepare GCC to be compiled:</para><para><screen><userinput>../gcc-&gcc-version;/configure --prefix=/usr \    --enable-shared --enable-threads=posix \    --enable-__cxa_atexit --enable-clocale=gnu \    --enable-languages=c,c++</userinput></screen></para><para>The meanings of the configure options are:</para><itemizedlist><listitem><para><userinput>--enable-threads=posix</userinput>: This enablesC++ exception handling for multi-threaded code.</para></listitem><listitem><para><userinput>--enable-__cxa_atexit</userinput>: This optionwill result in C++ shared libraries and C++ programs that are interoperablewith other Linux distributions.</para></listitem><listitem><para><userinput>--enable-clocale=gnu</userinput>: There is a riskthat some people will build ABI incompatible C++ libraries if they didn'tinstall all of the glibc localedata. Using --enable-clocale=gnu ensures thatthe "right thing" is done in all cases. If you don't wish to use this option,then at least build the <emphasis>de_DE</emphasis> locale. When GCC findsthis specific locale, then the correct locale mode (<emphasis>gnu</emphasis>)is implemented.</para></listitem></itemizedlist><para>Continue with compiling the package:</para><para><screen><userinput>make</userinput></screen></para><para><screen><userinput>make -k check</userinput></screen></para><para>Finish installing the package:</para><para><screen><userinput>make install</userinput></screen></para><para>Some packages expect the C PreProcessor to be installed in the<filename>/lib</filename> and <filename>/usr/lib</filename> directories.To honor those packages, create two symlinks:</para><para><screen><userinput>ln -s ../usr/bin/cpp /lib</userinput></screen></para><para>Many packages compile using <emphasis>cc</emphasis> as the name forthe C compiler. To satisfy those packages, create a <emphasis>cc</emphasis>symlink:</para><para><screen><userinput>ln -s gcc /usr/bin/cc</userinput></screen></para><para><screen><userinput>rm /usr/lib/libiberty.a</userinput></screen></para></sect2>
 |