source: chapter08/gcc.xml@ 0ea3431

xry111/clfs-ng
Last change on this file since 0ea3431 was 0ea3431, checked in by Xi Ruoyao <xry111@…>, 19 months ago

Merge remote-tracking branch 'origin/trunk' into xry111/clfs-ng

  • Property mode set to 100644
File size: 24.4 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[b06ca36]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[673b0d8]4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
[6a82dd9]7
[81fd230]8<sect1 id="ch-system-gcc" role="wrap">
[6a82dd9]9 <?dbhtml filename="gcc.html"?>
10
[e747759]11 <sect1info condition="script">
12 <productname>gcc</productname>
13 <productnumber>&gcc-version;</productnumber>
14 <address>&gcc-url;</address>
15 </sect1info>
16
[6a82dd9]17 <title>GCC-&gcc-version;</title>
18
19 <indexterm zone="ch-system-gcc">
20 <primary sortas="a-GCC">GCC</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
[6370fa6]25
[6a82dd9]26 <para>The GCC package contains the GNU compiler collection, which includes
27 the C and C++ compilers.</para>
[673b0d8]28
[6a82dd9]29 <segmentedlist>
30 <segtitle>&buildtime;</segtitle>
31 <segtitle>&diskspace;</segtitle>
[5888299]32
[6a82dd9]33 <seglistitem>
[fb386e0]34 <seg>&gcc-fin-sbu;</seg>
35 <seg>&gcc-fin-du;</seg>
[6a82dd9]36 </seglistitem>
37 </segmentedlist>
[3554fa3a]38
[6a82dd9]39 </sect2>
40
41 <sect2 role="installation">
42 <title>Installation of GCC</title>
[813ab55]43<!--
[a04b3d39]44 <para>At first, fix an issue breaking
45 <filename class="libraryfile">libasan.a</filename> building this package
[51e4ab2]46 with Glibc-2.34 or later:</para>
[a04b3d39]47
48<screen><userinput remap="pre">sed -e '/static.*SIGSTKSZ/d' \
49 -e 's/return kAltStackSize/return SIGSTKSZ * 4/' \
50 -i libsanitizer/sanitizer_common/sanitizer_posix_libcdep.cpp</userinput></screen>
[813ab55]51-->
[f2af13d]52<!--
[1b11115]53 <para>First fix a problem with the latest version of glibc:</para>
54
55 <screen><userinput remap="pre">patch -Np1 -i ../&gcc-upstream-fixes-patch;</userinput></screen>
[f2af13d]56-->
[1b11115]57
[30ae09bb]58 <para>For x86_64 target, set the default directory name for
59 64-bit libraries to <quote>lib</quote>. The command is unnecessary,
60 but harmless for 32-bit x86. If you are building for another target,
61 you may need to adjust the command for your target.</para>
62
63<screen><userinput remap="pre">sed -e '/m64=/s/lib64/lib/' \
64 -i.orig gcc/config/i386/t-linux64</userinput></screen>
[be3d9f3]65
[f1dd547]66 <para>The GCC documentation recommends building GCC in a dedicated build directory:</para>
[73aedd1d]67
[f1dd547]68<screen><userinput remap="pre">mkdir -v build
69cd build</userinput></screen>
[73aedd1d]70
[6a82dd9]71 <para>Prepare GCC for compilation:</para>
[73aedd1d]72
[efcb393]73<screen><userinput remap="configure">../configure --prefix=/usr \
74 LD=ld \
[f1dd547]75 --enable-languages=c,c++ \
[0611f706]76 --enable-default-pie \
77 --enable-default-ssp \
[f1dd547]78 --disable-multilib \
79 --disable-bootstrap \
80 --with-system-zlib</userinput></screen>
[73aedd1d]81
[6a156bab]82 <para>Note that for other programming languages there are some prerequisites that
[93756f6]83 are not yet available. See the
[6a156bab]84 <ulink url="&blfs-book;general/gcc.html">BLFS Book GCC page</ulink>
[93756f6]85 for instructions on how to build all of GCC's supported languages.</para>
[182d5d3]86
[ae4d45a]87 <variablelist>
[a89ab79]88 <title>The meaning of the new configure parameters:</title>
89
90 <varlistentry>
91 <term><parameter>LD=ld</parameter></term>
92 <listitem>
93 <para>This parameter makes the configure script use the ld installed
[6a156bab]94 by the binutils built earlier in this chapter, rather than
[a89ab79]95 the cross-built version which would otherwise be used.</para>
96 </listitem>
97 </varlistentry>
[cde2ae7]98
[ae4d45a]99 <varlistentry>
100 <term><parameter>--with-system-zlib</parameter></term>
101 <listitem>
102 <para>This switch tells GCC to link to the system installed copy of
[6a156bab]103 the zlib library, rather than its own internal copy.</para>
[ae4d45a]104 </listitem>
105 </varlistentry>
106 </variablelist>
107
[c10a327]108 <note>
109 <anchor id="pie-ssp-info" xreflabel="note on PIE and SSP"/>
[1bade3f]110 <para>
[e502de1]111 PIE (position-independent executable) is a technique to produce
112 binary programs that can be loaded anywhere in memory. Without PIE,
113 the security feature named ASLR (Address Space Layout Randomization)
[670f55f]114 can be applied for the shared libraries, but not the executable
[e502de1]115 itself. Enabling PIE allows ASLR for the executables in addition to
116 the shared libraries, and mitigates some attacks based on fixed
117 addresses of sensitive code or data in the executables.
[1bade3f]118 </para>
119 <para>
120 SSP (Stack Smashing Protection) is a technique to ensure
121 that the parameter stack is not corrupted. Stack corruption can
122 for example alter the return address of a subroutine,
[e502de1]123 which would allow transferring control to some dangerous code
124 (existing in the program or shared libraries, or injected by the
125 attacker somehow) instead of the original one.
[1bade3f]126 </para>
127 </note>
128
[6a82dd9]129 <para>Compile the package:</para>
[73aedd1d]130
[0445a3d]131<screen><userinput remap="make">make</userinput></screen>
[73aedd1d]132
[6a82dd9]133 <important>
134 <para>In this section, the test suite for GCC is considered
[7bd0378]135 important, but it takes a long time. First time builders are
[1f201845]136 encouraged to not skip it. The time to run the tests can be
137 reduced significantly by adding -jx to the make command below
138 where x is the number of cores on your system.</para>
[6a82dd9]139 </important>
[81fd230]140
[6a156bab]141 <para>One set of tests in the GCC test suite is known to exhaust the default
142 stack, so increase the stack size prior to running the tests:</para>
[4e48f56e]143
[2efa44a]144<screen><userinput remap="test">ulimit -s 32768</userinput></screen>
[4e48f56e]145
[76db8d6]146 <para>Test the results as a non-privileged user, but do not stop at errors:</para>
147
[d672ab7]148<screen><userinput remap="test">chown -Rv tester .
[ae7f075]149su tester -c "PATH=$PATH make -k check"</userinput></screen>
[73aedd1d]150
[9278974d]151 <para>To receive a summary of the test suite results, run:</para>
152
[f1dd547]153<screen><userinput remap="test">../contrib/test_summary</userinput></screen>
[9278974d]154
155 <para>For only the summaries, pipe the output through
156 <userinput>grep -A7 Summ</userinput>.</para>
157
158 <para>Results can be compared with those located at <ulink
[98e7ac4]159 url="&test-results;"/> and
[b30de8f]160 <ulink url="https://gcc.gnu.org/ml/gcc-testresults/"/>.</para>
[9278974d]161
[1bade3f]162 <para>In gcc, eleven tests, in the i386 test suite are known to FAIL.
163 It's because the test files do not account for the
164 <parameter>--enable-default-pie</parameter> option.</para>
165
[6edc3b4]166 <para>In g++, four tests related to PR100400 are known to be reported
167 as both XPASS and FAIL. It's because the test file for this known issue
168 is not well written.</para>
[d7a9421]169
[9278974d]170 <para>A few unexpected failures cannot always be avoided. The GCC developers
[0238d49]171 are usually aware of these issues, but have not resolved them yet.
[9278974d]172 Unless the test results are vastly different from those at the above URL,
173 it is safe to continue.</para>
[73aedd1d]174
[ac95fdb]175 <!--note><para>
[e3e989a]176 On some combinations of kernel configuration and AMD processors
177 there may be more than 1100 failures in the gcc.target/i386/mpx
178 tests (which are designed to test the MPX option on recent
179 Intel processors). These can safely be ignored on AMD
[1c8cc71]180 processors. These tests will also fail on Intel processors if MPX support
181 is not enabled in the kernel even though it is present on the CPU.
[ac95fdb]182 </para></note-->
[e3e989a]183
[bd08757]184 <para>Install the package:</para>
[73aedd1d]185
[bd08757]186<screen><userinput remap="install">make install</userinput></screen>
[73aedd1d]187
[e6db175]188 <para>The GCC build directory is owned by <systemitem class="username">
[ae7f075]189 tester</systemitem> now and the ownership of the installed header
[bf0ad1a]190 directory (and its content) will be incorrect. Change the ownership to
[e6db175]191 <systemitem class="username">root</systemitem> user and group:</para>
192
193<screen><userinput remap="install">chown -v -R root:root \
[9c43803]194 /usr/lib/gcc/$(gcc -dumpmachine)/&gcc-version;/include{,-fixed}</userinput></screen>
[e6db175]195
[60b23a6f]196 <para>Create a symlink required by the <ulink
[b30de8f]197 url="https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch03s09.html">FHS</ulink>
[60b23a6f]198 for "historical" reasons.</para>
[73aedd1d]199
[9c3ce2a]200<screen><userinput remap="install">ln -svr /usr/bin/cpp /usr/lib</userinput></screen>
[efcb393]201 <!-- already done earlier
[6a82dd9]202 <para>Many packages use the name <command>cc</command> to call the C
203 compiler. To satisfy those packages, create a symlink:</para>
[1ba726f]204
[0445a3d]205<screen><userinput remap="install">ln -sv gcc /usr/bin/cc</userinput></screen>
[efcb393]206 -->
[6206f72]207 <para>Add a compatibility symlink to enable building programs with
[d672ab7]208 Link Time Optimization (LTO):</para>
[6206f72]209
[f36db31]210<screen><userinput remap="install">ln -sfv ../../libexec/gcc/$(gcc -dumpmachine)/&gcc-version;/liblto_plugin.so \
[040ecb6]211 /usr/lib/bfd-plugins/</userinput></screen>
[6206f72]212
[09f1daf]213 <para>Now that our final toolchain is in place, it is important to again ensure
214 that compiling and linking will work as expected. We do this by performing
[6a156bab]215 some sanity checks:</para>
[09f1daf]216
[a4f63e4]217<screen><userinput>echo 'int main(){}' &gt; dummy.c
218cc dummy.c -v -Wl,--verbose &amp;&gt; dummy.log
219readelf -l a.out | grep ': /lib'</userinput></screen>
[09f1daf]220
[a4f63e4]221 <para>There should be no errors,
222 and the output of the last command will be (allowing for
223 platform-specific differences in the dynamic linker name):</para>
[09f1daf]224
[a4f63e4]225<screen><computeroutput>[Requesting program interpreter: /lib64/ld-linux-x86-64.so.2]</computeroutput></screen>
[09f1daf]226
[a4f63e4]227 <para>Now make sure that we're setup to use the correct start files:</para>
[09f1daf]228
[0d487e0]229<screen><userinput>grep -E -o '/usr/lib.*/S?crt[1in].*succeeded' dummy.log</userinput></screen>
[09f1daf]230
[a4f63e4]231 <para>The output of the last command should be:</para>
[09f1daf]232
[0d487e0]233<screen><computeroutput>/usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/../../../../lib/Scrt1.o succeeded
[98e7ac4]234/usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/../../../../lib/crti.o succeeded
235/usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/../../../../lib/crtn.o succeeded</computeroutput></screen>
[09f1daf]236
[6a156bab]237 <para>Depending on your machine architecture, the above may differ slightly.
238 The difference will be the name of the directory
[be3d9f3]239 after <filename class="directory">/usr/lib/gcc</filename>. The important
240 thing to look for here is that <command>gcc</command> has found all three
[5f7456b]241 <filename>crt*.o</filename> files under the
242 <filename class="directory">/usr/lib</filename> directory.</para>
[6e88633]243
[a4f63e4]244 <para>Verify that the compiler is searching for the correct header
245 files:</para>
[09f1daf]246
[041c8f67]247<screen><userinput>grep -B4 '^ /usr/include' dummy.log</userinput></screen>
[e9a652b]248
[a4f63e4]249 <para>This command should return the following output:</para>
[09f1daf]250
[e9a652b]251<screen><computeroutput>#include &lt;...&gt; search starts here:
[98e7ac4]252 /usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/include
[c528e3a]253 /usr/local/include
[98e7ac4]254 /usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/include-fixed
[e9a652b]255 /usr/include</computeroutput></screen>
256
[6a156bab]257 <para>Again, the directory named after your target triplet may be
258 different than the above, depending on your system architecture.</para>
[3f39abf3]259
[a4f63e4]260 <para>Next, verify that the new linker is being used with the correct search paths:</para>
[09f1daf]261
[a4f63e4]262<screen><userinput>grep 'SEARCH.*/usr/lib' dummy.log |sed 's|; |\n|g'</userinput></screen>
[09f1daf]263
[a4f63e4]264 <para>References to paths that have components with '-linux-gnu' should
265 be ignored, but otherwise the output of the last command should be:</para>
[09f1daf]266
[98e7ac4]267<screen><computeroutput>SEARCH_DIR("/usr/x86_64-pc-linux-gnu/lib64")
268SEARCH_DIR("/usr/local/lib64")
269SEARCH_DIR("/lib64")
270SEARCH_DIR("/usr/lib64")
271SEARCH_DIR("/usr/x86_64-pc-linux-gnu/lib")
[e9a652b]272SEARCH_DIR("/usr/local/lib")
273SEARCH_DIR("/lib")
[6e88633]274SEARCH_DIR("/usr/lib");</computeroutput></screen>
275
[98e7ac4]276 <para>A 32-bit system may see a few different directories. For example, here
277 is the output from an i686 machine:</para>
[6e88633]278
[98e7ac4]279<screen><computeroutput>SEARCH_DIR("/usr/i686-pc-linux-gnu/lib32")
280SEARCH_DIR("/usr/local/lib32")
281SEARCH_DIR("/lib32")
282SEARCH_DIR("/usr/lib32")
283SEARCH_DIR("/usr/i686-pc-linux-gnu/lib")
[6e88633]284SEARCH_DIR("/usr/local/lib")
285SEARCH_DIR("/lib")
[e9a652b]286SEARCH_DIR("/usr/lib");</computeroutput></screen>
287
[a4f63e4]288 <para>Next make sure that we're using the correct libc:</para>
[09f1daf]289
[a4f63e4]290<screen><userinput>grep "/lib.*/libc.so.6 " dummy.log</userinput></screen>
[09f1daf]291
[a4f63e4]292 <para>The output of the last command should be:</para>
[09f1daf]293
[a4f63e4]294<screen><computeroutput>attempt to open /usr/lib/libc.so.6 succeeded</computeroutput></screen>
[09f1daf]295
[a4f63e4]296 <para>Make sure GCC is using the correct dynamic linker:</para>
[09f1daf]297
[a4f63e4]298<screen><userinput>grep found dummy.log</userinput></screen>
[09f1daf]299
[a4f63e4]300 <para>The output of the last command should be (allowing for
301 platform-specific differences in dynamic linker name):</para>
[09f1daf]302
[a4f63e4]303<screen><computeroutput>found ld-linux-x86-64.so.2 at /usr/lib/ld-linux-x86-64.so.2</computeroutput></screen>
[09f1daf]304
[a4f63e4]305 <para>If the output does not appear as shown above or is not received
306 at all, then something is seriously wrong. Investigate and retrace the
307 steps to find out where the problem is and correct it. <!--The most likely
308 reason is that something went wrong with the specs file adjustment.--> Any
309 issues will need to be resolved before continuing with the process.</para>
[6a82dd9]310
[a4f63e4]311 <para>Once everything is working correctly, clean up the test files:</para>
[e9a652b]312
[a4f63e4]313<screen><userinput>rm -v dummy.c a.out dummy.log</userinput></screen>
[e9a652b]314
[970a126]315 <para>Finally, move a misplaced file:</para>
[39ec01c]316
[970a126]317<screen><userinput remap="install">mkdir -pv /usr/share/gdb/auto-load/usr/lib
318mv -v /usr/lib/*gdb.py /usr/share/gdb/auto-load/usr/lib</userinput></screen>
[39ec01c]319
[6a82dd9]320 </sect2>
321
322 <sect2 id="contents-gcc" role="content">
323 <title>Contents of GCC</title>
324
325 <segmentedlist>
326 <segtitle>Installed programs</segtitle>
327 <segtitle>Installed libraries</segtitle>
[fe05b08]328 <segtitle>Installed directories</segtitle>
[6a82dd9]329
330 <seglistitem>
[2ca8941]331 <seg>c++, cc (link to gcc), cpp, g++, gcc,
[e5b4b3f]332 gcc-ar, gcc-nm, gcc-ranlib, gcov, gcov-dump, gcov-tool,
333 and lto-dump</seg>
[e0901b3]334
[78cc3be]335 <seg>libasan.{a,so}, libatomic.{a,so}, libcc1.so, libgcc.a, libgcc_eh.a,
336 libgcc_s.so, libgcov.a, libgomp.{a,so}, libitm.{a,so},
337 liblsan.{a,so}, liblto_plugin.so,
338 libquadmath.{a,so}, libssp.{a,so}, libssp_nonshared.a,
339 libstdc++.{a,so}, libstdc++fs.a, libsupc++.a, libtsan.{a,so},
340 and libubsan.{a,so}</seg>
[2ca8941]341
[d672ab7]342 <seg>/usr/include/c++, /usr/lib/gcc, /usr/libexec/gcc, and
[4e8a532]343 /usr/share/gcc-&gcc-version;</seg>
[6a82dd9]344 </seglistitem>
345 </segmentedlist>
346
347 <variablelist>
348 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
349 <?dbfo list-presentation="list"?>
350 <?dbhtml list-presentation="table"?>
351
[75128571]352 <varlistentry id="c">
353 <term><command>c++</command></term>
354 <listitem>
355 <para>The C++ compiler</para>
356 <indexterm zone="ch-system-gcc c">
357 <primary sortas="b-c++">c++</primary>
358 </indexterm>
359 </listitem>
360 </varlistentry>
361
[6a82dd9]362 <varlistentry id="cc">
363 <term><command>cc</command></term>
364 <listitem>
365 <para>The C compiler</para>
366 <indexterm zone="ch-system-gcc cc">
367 <primary sortas="b-cc">cc</primary>
368 </indexterm>
369 </listitem>
370 </varlistentry>
371
372 <varlistentry id="cpp">
373 <term><command>cpp</command></term>
374 <listitem>
375 <para>The C preprocessor; it is used by the compiler to expand the
376 #include, #define, and similar statements in the source files</para>
377 <indexterm zone="ch-system-gcc cpp">
378 <primary sortas="b-cpp">cpp</primary>
379 </indexterm>
380 </listitem>
381 </varlistentry>
382
383 <varlistentry id="g">
384 <term><command>g++</command></term>
385 <listitem>
386 <para>The C++ compiler</para>
387 <indexterm zone="ch-system-gcc g">
388 <primary sortas="b-g++">g++</primary>
389 </indexterm>
390 </listitem>
391 </varlistentry>
392
393 <varlistentry id="gcc">
394 <term><command>gcc</command></term>
395 <listitem>
396 <para>The C compiler</para>
397 <indexterm zone="ch-system-gcc gcc">
398 <primary sortas="b-gcc">gcc</primary>
399 </indexterm>
400 </listitem>
401 </varlistentry>
402
[e0901b3]403 <varlistentry id="gcc-ar">
404 <term><command>gcc-ar</command></term>
405 <listitem>
406 <para>A wrapper around <command>ar</command> that adds a
[afba93b]407 plugin to the command line. This program is only used
[edbeeb5]408 to add "link time optimization" and is not useful with the
[afba93b]409 default build options</para>
[e0901b3]410 <indexterm zone="ch-system-gcc gcc-ar">
411 <primary sortas="b-gcc-ar">gc-ar</primary>
412 </indexterm>
413 </listitem>
414 </varlistentry>
415
416 <varlistentry id="gcc-nm">
417 <term><command>gcc-nm</command></term>
418 <listitem>
419 <para>A wrapper around <command>nm</command> that adds a
[afba93b]420 plugin to the command line. This program is only used
[a885478]421 to add "link time optimization" and is not useful with the
[afba93b]422 default build options</para>
[e0901b3]423 <indexterm zone="ch-system-gcc gcc-nm">
424 <primary sortas="b-gcc-nm">gc-nm</primary>
425 </indexterm>
426 </listitem>
427 </varlistentry>
428
429 <varlistentry id="gcc-ranlib">
430 <term><command>gcc-ranlib</command></term>
431 <listitem>
432 <para>A wrapper around <command>ranlib</command> that adds a
[afba93b]433 plugin to the command line. This program is only used
[a885478]434 to add "link time optimization" and is not useful with the
[afba93b]435 default build options</para>
[e0901b3]436 <indexterm zone="ch-system-gcc gcc-ranlib">
437 <primary sortas="b-gcc-ranlib">gc-ranlib</primary>
438 </indexterm>
439 </listitem>
440 </varlistentry>
[6a82dd9]441
442 <varlistentry id="gcov">
443 <term><command>gcov</command></term>
444 <listitem>
445 <para>A coverage testing tool; it is used to analyze programs to
446 determine where optimizations will have the most effect</para>
447 <indexterm zone="ch-system-gcc gcov">
448 <primary sortas="b-gcov">gcov</primary>
449 </indexterm>
[4783efe]450 </listitem>
451 </varlistentry>
452
[78cc3be]453 <varlistentry id="gcov-dump">
454 <term><command>gcov-dump</command></term>
455 <listitem>
456 <para>Offline gcda and gcno profile dump tool</para>
457 <indexterm zone="ch-system-gcc gcov-dump">
458 <primary sortas="b-gcov-dump">gcov-dump</primary>
459 </indexterm>
460 </listitem>
461 </varlistentry>
462
463 <varlistentry id="gcov-tool">
464 <term><command>gcov-tool</command></term>
465 <listitem>
466 <para>Offline gcda profile processing tool</para>
467 <indexterm zone="ch-system-gcc gcov-tool">
468 <primary sortas="b-gcov-tool">gcov-tool</primary>
469 </indexterm>
470 </listitem>
471 </varlistentry>
472
[e5b4b3f]473 <varlistentry id="lto-dump">
474 <term><command>lto-dump</command></term>
475 <listitem>
476 <para>Tool for dumping object files produced by GCC with LTO
477 enabled</para>
478 <indexterm zone="ch-system-gcc lto-dump">
479 <primary sortas="b-lto-dump">lto-dump</primary>
480 </indexterm>
481 </listitem>
482 </varlistentry>
483
[4783efe]484 <varlistentry id="libasan">
[78cc3be]485 <term><filename class="libraryfile">libasan</filename></term>
[4783efe]486 <listitem>
487 <para>The Address Sanitizer runtime library</para>
488 <indexterm zone="ch-system-gcc libasan">
489 <primary sortas="b-libasan">libasan</primary>
490 </indexterm>
[6a82dd9]491 </listitem>
492 </varlistentry>
493
[78cc3be]494 <varlistentry id="libatomic">
495 <term><filename class="libraryfile">libatomic</filename></term>
496 <listitem>
497 <para>GCC atomic built-in runtime library</para>
498 <indexterm zone="ch-system-gcc libatomic">
499 <primary sortas="b-libatomic">libatomic</primary>
500 </indexterm>
501 </listitem>
502 </varlistentry>
503
504 <varlistentry id="libcc1">
505 <term><filename class="libraryfile">libcc1</filename></term>
506 <listitem>
507 <para>The C preprocessing library</para>
508 <indexterm zone="ch-system-gcc libcc1">
509 <primary sortas="b-libcc1">libcc1</primary>
510 </indexterm>
511 </listitem>
512 </varlistentry>
513
[6a82dd9]514 <varlistentry id="libgcc">
515 <term><filename class="libraryfile">libgcc</filename></term>
516 <listitem>
517 <para>Contains run-time support for <command>gcc</command></para>
518 <indexterm zone="ch-system-gcc libgcc">
[afba93b]519 <primary sortas="c-libgcc">libgcc</primary>
[6a82dd9]520 </indexterm>
521 </listitem>
522 </varlistentry>
523
[90aae6b]524 <varlistentry id="libgcov">
525 <term><filename class="libraryfile">libgcov</filename></term>
526 <listitem>
527 <para>This library is linked in to a program when GCC is instructed
528 to enable profiling</para>
529 <indexterm zone="ch-system-gcc libgcov">
530 <primary sortas="c-libgcov">libgcov</primary>
531 </indexterm>
532 </listitem>
533 </varlistentry>
534
535 <varlistentry id="libgomp">
536 <term><filename class="libraryfile">libgomp</filename></term>
537 <listitem>
538 <para>GNU implementation of the OpenMP API for multi-platform
539 shared-memory parallel programming in C/C++ and Fortran</para>
540 <indexterm zone="ch-system-gcc libgomp">
541 <primary sortas="c-libgomp">libgomp</primary>
542 </indexterm>
543 </listitem>
544 </varlistentry>
545
[e5b4b3f]546 <varlistentry id="libitm">
547 <term><filename class="libraryfile">libitm</filename></term>
548 <listitem>
549 <para>The GNU transactional memory library</para>
550 <indexterm zone="ch-system-gcc libitm">
551 <primary sortas="c-libitm">libitm</primary>
552 </indexterm>
553 </listitem>
554 </varlistentry>
555
[78cc3be]556 <varlistentry id="liblsan">
557 <term><filename class="libraryfile">liblsan</filename></term>
[b755562]558 <listitem>
[78cc3be]559 <para>The Leak Sanitizer runtime library</para>
560 <indexterm zone="ch-system-gcc liblsan">
561 <primary sortas="c-liblsan">liblsan</primary>
[b755562]562 </indexterm>
563 </listitem>
564 </varlistentry>
565
[3119ddc]566 <varlistentry id="liblto_plugin">
567 <term><filename class="libraryfile">liblto_plugin</filename></term>
568 <listitem>
[e5b4b3f]569 <para>GCC's LTO plugin allows binutils to process object files
570 produced by GCC with LTO enabled</para>
[3119ddc]571 <indexterm zone="ch-system-gcc liblto_plugin">
[afba93b]572 <primary sortas="c-liblto_plugin">liblto_plugin</primary>
[3119ddc]573 </indexterm>
574 </listitem>
575 </varlistentry>
[7bb9fda]576
[3119ddc]577 <varlistentry id="libquadmath">
578 <term><filename class="libraryfile">libquadmath</filename></term>
579 <listitem>
580 <para>GCC Quad Precision Math Library API</para>
581 <indexterm zone="ch-system-gcc libquadmath">
[afba93b]582 <primary sortas="c-libquadmath">libquadmath</primary>
[3119ddc]583 </indexterm>
584 </listitem>
585 </varlistentry>
586
[2791a8e]587 <varlistentry id="libssp">
588 <term><filename class="libraryfile">libssp</filename></term>
589 <listitem>
590 <para>Contains routines supporting GCC's stack-smashing protection
[fb5ad92]591 functionality. Normally it's unused because glibc also provides
592 those routines</para>
[2791a8e]593 <indexterm zone="ch-system-gcc libssp">
[afba93b]594 <primary sortas="c-libssp">libssp</primary>
[2791a8e]595 </indexterm>
596 </listitem>
597 </varlistentry>
598
[6a82dd9]599 <varlistentry id="libstdc">
600 <term><filename class="libraryfile">libstdc++</filename></term>
601 <listitem>
602 <para>The standard C++ library</para>
603 <indexterm zone="ch-system-gcc libstdc">
604 <primary sortas="c-libstdc++">libstdc++</primary>
605 </indexterm>
606 </listitem>
607 </varlistentry>
608
[78cc3be]609 <varlistentry id="libstdcfs">
610 <term><filename class="libraryfile">libstdc++fs</filename></term>
611 <listitem>
612 <para>ISO/IEC TS 18822:2015 Filesystem library</para>
613 <indexterm zone="ch-system-gcc libstdcfs">
614 <primary sortas="c-libstdc++fs">libstdc++fs</primary>
615 </indexterm>
616 </listitem>
617 </varlistentry>
618
[6a82dd9]619 <varlistentry id="libsupc">
620 <term><filename class="libraryfile">libsupc++</filename></term>
621 <listitem>
622 <para>Provides supporting routines for the C++ programming
623 language</para>
624 <indexterm zone="ch-system-gcc libsupc">
625 <primary sortas="c-libsupc++">libsupc++</primary>
626 </indexterm>
627 </listitem>
628 </varlistentry>
629
[f6b1d91]630 <varlistentry id="libtsan">
631 <term><filename class="libraryfile">libtsan</filename></term>
632 <listitem>
633 <para>The Thread Sanitizer runtime library</para>
634 <indexterm zone="ch-system-gcc libtsan">
635 <primary sortas="c-libtsan">libtsan</primary>
636 </indexterm>
637 </listitem>
638 </varlistentry>
639
[78cc3be]640 <varlistentry id="libubsan">
641 <term><filename class="libraryfile">libubsan</filename></term>
642 <listitem>
643 <para>The Undefined Behavior Sanitizer runtime library</para>
644 <indexterm zone="ch-system-gcc libubsan">
645 <primary sortas="c-libubsan">libubsan</primary>
646 </indexterm>
647 </listitem>
648 </varlistentry>
649
[6a82dd9]650 </variablelist>
651
652 </sect2>
[673b0d8]653
654</sect1>
Note: See TracBrowser for help on using the repository browser.