source: chapter08/gcc.xml@ 340e17a

multilib trunk xry111/arm64 xry111/loongarch
Last change on this file since 340e17a was 340e17a, checked in by Bruce Dubbs <bdubbs@…>, 6 weeks 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
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-system-gcc" role="wrap">
9 <?dbhtml filename="gcc.html"?>
10
11 <sect1info condition="script">
12 <productname>gcc</productname>
13 <productnumber>&gcc-version;</productnumber>
14 <address>&gcc-url;</address>
15 </sect1info>
16
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/>
25
26 <para>The GCC package contains the GNU compiler collection, which includes
27 the C and C++ compilers.</para>
28
29 <segmentedlist>
30 <segtitle>&buildtime;</segtitle>
31 <segtitle>&diskspace;</segtitle>
32
33 <seglistitem>
34 <seg>&gcc-fin-sbu;</seg>
35 <seg>&gcc-fin-du;</seg>
36 </seglistitem>
37 </segmentedlist>
38
39 </sect2>
40
41 <sect2 role="installation">
42 <title>Installation of GCC</title>
43
44 <para>If building on x86_64, change the default directory name for 64-bit
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
54 <para>The GCC documentation recommends building GCC in a dedicated build directory:</para>
55
56<screen><userinput remap="pre">mkdir -v build
57cd build</userinput></screen>
58
59 <para>Prepare GCC for compilation:</para>
60
61<screen><userinput remap="configure">../configure --prefix=/usr \
62 LD=ld \
63 --enable-languages=c,c++ \
64 --enable-default-pie \
65 --enable-default-ssp \
66 --enable-host-pie \
67 --disable-multilib \
68 --disable-bootstrap \
69 --disable-fixincludes \
70 --with-system-zlib</userinput></screen>
71
72 <para>GCC supports seven different computer languages, but the
73 prerequisites for most of them have not yet been installed. See the
74 <ulink url="&blfs-book;general/gcc.html">BLFS Book GCC page</ulink>
75 for instructions on how to build all of GCC's supported languages.</para>
76
77 <variablelist>
78 <title>The meaning of the new configure parameters:</title>
79
80 <varlistentry>
81 <term><parameter>LD=ld</parameter></term>
82 <listitem>
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
85 the cross-built version which would otherwise be used.</para>
86 </listitem>
87 </varlistentry>
88
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
94 is not necessary for a modern Linux system, and potentially
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
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
104 the Zlib library, rather than its own internal copy.</para>
105 </listitem>
106 </varlistentry>
107 </variablelist>
108
109 <note>
110 <anchor id="pie-ssp-info" xreflabel="note on PIE and SSP"/>
111 <para>
112 PIE (position-independent executables) are
113 binary programs that can be loaded anywhere in memory. Without PIE,
114 the security feature named ASLR (Address Space Layout Randomization)
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
117 the shared libraries, and mitigates some attacks based on fixed
118 addresses of sensitive code or data in the executables.
119 </para>
120 <para>
121 SSP (Stack Smashing Protection) is a technique to ensure
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
125 (existing in the program or shared libraries, or injected by the
126 attacker somehow).
127 </para>
128 </note>
129
130 <para>Compile the package:</para>
131
132<screen><userinput remap="make">make</userinput></screen>
133
134 <important>
135 <para>In this section, the test suite for GCC is considered
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
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>
140 </important>
141
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>
144
145<screen><userinput remap="test">ulimit -s 32768</userinput></screen>
146
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
155 <para>Test the results as a non-privileged user, but do not stop at errors:</para>
156
157<screen><userinput remap="test">chown -R tester .
158su tester -c "PATH=$PATH make -k check"</userinput></screen>
159
160 <para>To extract a summary of the test suite results, run:</para>
161
162<screen><userinput remap="test">../contrib/test_summary</userinput></screen>
163
164 <para>To filter out only the summaries, pipe the output through
165 <userinput>grep -A7 Summ</userinput>.</para>
166
167 <para>Results can be compared with those located at <ulink
168 url="&test-results;"/> and
169 <ulink url="https://gcc.gnu.org/ml/gcc-testresults/"/>.</para>
170<!--
171 <para>
172 Eight gcc tests (out of over 185,000):
173 <!- - https://gcc.gnu.org/PR106375 - -><filename>pr56837.c</filename>
174 and seven tests in the <filename class='directory'>analyzer</filename>
175 directory are known to fail.
176
177 <!- - https://gcc.gnu.org/PR109353 - ->
178 One libstdc++ test (out of over 15000), <filename>copy.cc</filename>, is
179 known to fail.
180
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.
185
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>
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.-->
193 Unless the test results are vastly different from those at the above URL,
194 it is safe to continue.</para>
195
196 <para>Install the package:</para>
197
198<screen><userinput remap="install">make install</userinput></screen>
199
200 <para>The GCC build directory is owned by <systemitem class="username">
201 tester</systemitem> now, and the ownership of the installed header
202 directory (and its content) is incorrect. Change the ownership to the
203 <systemitem class="username">root</systemitem> user and group:</para>
204
205<screen><userinput remap="install">chown -v -R root:root \
206 /usr/lib/gcc/$(gcc -dumpmachine)/&gcc-version;/include{,-fixed}</userinput></screen>
207
208 <para>Create a symlink required by the <ulink
209 url="https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch03s09.html">FHS</ulink>
210 for "historical" reasons.</para>
211
212<screen><userinput remap="install">ln -svr /usr/bin/cpp /usr/lib</userinput></screen>
213
214 <para>Many packages use the name <command>cc</command> to call the C
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>
220
221 <para>Add a compatibility symlink to enable building programs with
222 Link Time Optimization (LTO):</para>
223
224<screen><userinput remap="install">ln -sfv ../../libexec/gcc/$(gcc -dumpmachine)/&gcc-version;/liblto_plugin.so \
225 /usr/lib/bfd-plugins/</userinput></screen>
226
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
229 some sanity checks:</para>
230
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>
234
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>
238
239<screen><computeroutput>[Requesting program interpreter: /lib64/ld-linux-x86-64.so.2]</computeroutput></screen>
240
241 <para>Now make sure that we're set up to use the correct start files:</para>
242
243<screen><userinput>grep -E -o '/usr/lib.*/S?crt[1in].*succeeded' dummy.log</userinput></screen>
244
245 <para>The output of the last command should be:</para>
246
247<screen><computeroutput>/usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/../../../../lib/Scrt1.o succeeded
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>
250
251 <para>Depending on your machine architecture, the above may differ slightly.
252 The difference will be the name of the directory
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
255 <filename>crt*.o</filename> files under the
256 <filename class="directory">/usr/lib</filename> directory.</para>
257
258 <para>Verify that the compiler is searching for the correct header
259 files:</para>
260
261<screen><userinput>grep -B4 '^ /usr/include' dummy.log</userinput></screen>
262
263 <para>This command should return the following output:</para>
264
265<screen><computeroutput>#include &lt;...&gt; search starts here:
266 /usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/include
267 /usr/local/include
268 /usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/include-fixed
269 /usr/include</computeroutput></screen>
270
271 <para>Again, the directory named after your target triplet may be
272 different than the above, depending on your system architecture.</para>
273
274 <para>Next, verify that the new linker is being used with the correct search paths:</para>
275
276<screen><userinput>grep 'SEARCH.*/usr/lib' dummy.log |sed 's|; |\n|g'</userinput></screen>
277
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>
280
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")
286SEARCH_DIR("/usr/local/lib")
287SEARCH_DIR("/lib")
288SEARCH_DIR("/usr/lib");</computeroutput></screen>
289
290 <para>A 32-bit system may use a few other directories. For example, here
291 is the output from an i686 machine:</para>
292
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")
298SEARCH_DIR("/usr/local/lib")
299SEARCH_DIR("/lib")
300SEARCH_DIR("/usr/lib");</computeroutput></screen>
301
302 <para>Next make sure that we're using the correct libc:</para>
303
304<screen><userinput>grep "/lib.*/libc.so.6 " dummy.log</userinput></screen>
305
306 <para>The output of the last command should be:</para>
307
308<screen><computeroutput>attempt to open /usr/lib/libc.so.6 succeeded</computeroutput></screen>
309
310 <para>Make sure GCC is using the correct dynamic linker:</para>
311
312<screen><userinput>grep found dummy.log</userinput></screen>
313
314 <para>The output of the last command should be (allowing for
315 platform-specific differences in dynamic linker name):</para>
316
317<screen><computeroutput>found ld-linux-x86-64.so.2 at /usr/lib/ld-linux-x86-64.so.2</computeroutput></screen>
318
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
323 issues should be resolved before continuing with the process.</para>
324
325 <para>Once everything is working correctly, clean up the test files:</para>
326
327<screen><userinput>rm -v dummy.c a.out dummy.log</userinput></screen>
328
329 <para>Finally, move a misplaced file:</para>
330
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>
333
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>
342 <segtitle>Installed directories</segtitle>
343
344 <seglistitem>
345 <seg>c++, cc (link to gcc), cpp, g++, gcc,
346 gcc-ar, gcc-nm, gcc-ranlib, gcov, gcov-dump, gcov-tool,
347 and lto-dump</seg>
348
349 <seg>libasan.{a,so}, libatomic.{a,so}, libcc1.so, libgcc.a, libgcc_eh.a,
350 libgcc_s.so, libgcov.a, libgomp.{a,so}, libhwasan.{a,so}, libitm.{a,so},
351 liblsan.{a,so}, liblto_plugin.so,
352 libquadmath.{a,so}, libssp.{a,so}, libssp_nonshared.a,
353 libstdc++.{a,so}, libstdc++exp.a, libstdc++fs.a, libsupc++.a, libtsan.{a,so},
354 and libubsan.{a,so}</seg>
355
356 <seg>/usr/include/c++, /usr/lib/gcc, /usr/libexec/gcc, and
357 /usr/share/gcc-&gcc-version;</seg>
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
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
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
390 #include, #define, and similar directives in the source files</para>
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
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
421 plugin to the command line. This program is only used
422 to add "link time optimization" and is not useful with the
423 default build options.</para>
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
434 plugin to the command line. This program is only used
435 to add "link time optimization" and is not useful with the
436 default build options.</para>
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
447 plugin to the command line. This program is only used
448 to add "link time optimization" and is not useful with the
449 default build options.</para>
450 <indexterm zone="ch-system-gcc gcc-ranlib">
451 <primary sortas="b-gcc-ranlib">gc-ranlib</primary>
452 </indexterm>
453 </listitem>
454 </varlistentry>
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
460 determine where optimizations will have the greatest effect</para>
461 <indexterm zone="ch-system-gcc gcov">
462 <primary sortas="b-gcov">gcov</primary>
463 </indexterm>
464 </listitem>
465 </varlistentry>
466
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
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
498 <varlistentry id="libasan">
499 <term><filename class="libraryfile">libasan</filename></term>
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>
505 </listitem>
506 </varlistentry>
507
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>
521 <para>A library that allows GDB to make use of GCC</para>
522 <indexterm zone="ch-system-gcc libcc1">
523 <primary sortas="b-libcc1">libcc1</primary>
524 </indexterm>
525 </listitem>
526 </varlistentry>
527
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">
533 <primary sortas="c-libgcc">libgcc</primary>
534 </indexterm>
535 </listitem>
536 </varlistentry>
537
538 <varlistentry id="libgcov">
539 <term><filename class="libraryfile">libgcov</filename></term>
540 <listitem>
541 <para>This library is linked into a program when GCC is instructed
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
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
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
580 <varlistentry id="liblsan">
581 <term><filename class="libraryfile">liblsan</filename></term>
582 <listitem>
583 <para>The Leak Sanitizer runtime library</para>
584 <indexterm zone="ch-system-gcc liblsan">
585 <primary sortas="c-liblsan">liblsan</primary>
586 </indexterm>
587 </listitem>
588 </varlistentry>
589
590 <varlistentry id="liblto_plugin">
591 <term><filename class="libraryfile">liblto_plugin</filename></term>
592 <listitem>
593 <para>GCC's LTO plugin allows Binutils to process object files
594 produced by GCC with LTO enabled</para>
595 <indexterm zone="ch-system-gcc liblto_plugin">
596 <primary sortas="c-liblto_plugin">liblto_plugin</primary>
597 </indexterm>
598 </listitem>
599 </varlistentry>
600
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">
606 <primary sortas="c-libquadmath">libquadmath</primary>
607 </indexterm>
608 </listitem>
609 </varlistentry>
610
611 <varlistentry id="libssp">
612 <term><filename class="libraryfile">libssp</filename></term>
613 <listitem>
614 <para>Contains routines supporting GCC's stack-smashing protection
615 functionality. Normally it is not used, because Glibc also provides
616 those routines.</para>
617 <indexterm zone="ch-system-gcc libssp">
618 <primary sortas="c-libssp">libssp</primary>
619 </indexterm>
620 </listitem>
621 </varlistentry>
622
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
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
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
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
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
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
684 </variablelist>
685
686 </sect2>
687
688</sect1>
Note: See TracBrowser for help on using the repository browser.