source: chapter08/gcc.xml@ e3f47a2

12.2 12.2-rc1 multilib trunk xry111/arm64 xry111/clfs-ng xry111/loongarch xry111/loongarch-12.2 xry111/multilib
Last change on this file since e3f47a2 was 340e17a, checked in by Bruce Dubbs <bdubbs@…>, 4 months ago

Package updates.
Update to vim-9.1.0405.
Update to util-linux-2.40.1.
Update to linux-6.8.9.
Update to jinja2-3.1.4 (Python mpdule).
Update to iana-etc-20240502.
Update to gcc-14.1.0.

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