| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 | <sect2><title> </title><para> </para></sect2><sect2><title>Installation of GCC</title><note><para>The test suite for GCC in this chapter is considered <emphasis>critical</emphasis>. Do not skip it under any circumstances.</para></note><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>This time we will build both the C and the C++ compiler, so you'll haveto unpack the GCC-core <emphasis>and</emphasis> the GCC-g++ tarball -- theywill unfold into the same directory. You should likewise extract theGCC-testsuite package. The full GCC package contains even morecompilers. Instructions for building these can be found at<ulink url="&blfs-root;view/cvs/general/gcc.html"/>.</para><para><screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-no_fixincludes-2.patchpatch -Np1 -i ../gcc-3.3.1-suppress-libiberty.patch</userinput></screen></para><para>The second patch here suppresses the installation of libiberty from GCC,as we will use the one provided by binutils instead.</para><para>GCC's installation documentation recommends to build the package in adedicated directory separate from the source tree. Create this builddirectory and go there:</para><para><screen><userinput>mkdir ../gcc-buildcd ../gcc-build</userinput></screen></para><para>Now prepare GCC for compilation:</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 meaning of the new configure options:</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>Compile the package:</para><para><screen><userinput>make</userinput></screen></para><para>Test the results, but don't stop at errors (you'll remember the fewknown ones):</para><para><screen><userinput>make -k check</userinput></screen></para><para>And install 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> directory.To honor those packages, create this symlink:</para><para><screen><userinput>ln -s ../usr/bin/cpp /lib</userinput></screen></para><para>Many packages use the name <userinput>cc</userinput> to call the Ccompiler. To satisfy those packages, create a symlink:</para><para><screen><userinput>ln -s gcc /usr/bin/cc</userinput></screen></para></sect2>
 |