| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 | <sect2><title> </title><para> </para></sect2><sect2><title>Installation of GCC</title><note><para>The test suite for GCC in this section is considered<emphasis>critical</emphasis>. Our advice is to not skip it under anycircumstance.</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/stable/general/gcc.html"/>.</para><screen><userinput>patch -Np1 -i ../&gcc-nofixincludes-patch;patch -Np1 -i ../&gcc-suppress-libiberty-patch;</userinput></screen><para>The second patch here suppresses the installation of libiberty from GCC,as we will use the one provided by binutils instead. Be careful<emphasis>not</emphasis> to apply the GCC specs patch from Chapter 5here.</para><para>The GCC documentation recommends building GCC outside of the sourcedirectory in a dedicated build directory:</para><screen><userinput>mkdir ../gcc-buildcd ../gcc-build</userinput></screen><para>Now prepare GCC for compilation:</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>Compile the package:</para><screen><userinput>make</userinput></screen><para>Test the results, but don't stop at errors (you'll remember the fewknown ones):</para><screen><userinput>make -k check</userinput></screen><para>The test suite notes from <xref linkend="ch05-gcc-pass2"/> are still verymuch appropriate here. Be sure to refer back there should you have anydoubts.</para><para>And install the package:</para><screen><userinput>make install</userinput></screen><para>Some packages expect the C PreProcessor to be installed in the<filename>/lib</filename> directory.To honor those packages, create this symlink:</para><screen><userinput>ln -s ../usr/bin/cpp /lib</userinput></screen><para>Many packages use the name <userinput>cc</userinput> to call the Ccompiler. To satisfy those packages, create a symlink:</para><screen><userinput>ln -s gcc /usr/bin/cc</userinput></screen><note><para>At this point it is strongly recommended to repeat the sanity checkwe performed earlier in this chapter. Refer back to<xref linkend="ch06-adjustingtoolchain"/> and repeat the check. If the resultsare wrong, then most likely you erroneously applied the GCC Specs patch fromChapter 5.</para></note></sect2>
 |