source: chapter06/gcc.xml@ e65cc63

multilib-10.1
Last change on this file since e65cc63 was e65cc63, checked in by Thomas Trepl <thomas@…>, 4 years ago

Replace a arch specific placeholder by an arch independend one

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multilib@11858 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 23.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
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-ch6-sbu;</seg>
35 <seg>&gcc-ch6-du;</seg>
36 </seglistitem>
37 </segmentedlist>
38
39 </sect2>
40
41 <sect2 role="installation">
42 <title>Installation of GCC</title>
43
44 <para arch="default">If building on x86_64, change the default directory
45 name for 64-bit libraries to <quote>lib</quote>:</para>
46
47<screen arch="default"><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 arch="ml_32,ml_x32,ml_all">Change the default directory name for 64-bit
55 libraries to <quote>lib</quote>:</para>
56
57<screen arch="ml_32,ml_x32,ml_all"><userinput remap="pre">sed -e '/m64=/s/lib64/lib/' \
58 -e '/m32=/s/m32=.*/m32=..\/lib32$(call if_multiarch,:i386-linux-gnu)/' \
59 -i.orig gcc/config/i386/t-linux64</userinput></screen>
60
61 <para>The GCC documentation recommends building GCC in a dedicated build directory:</para>
62
63<screen><userinput remap="pre">mkdir -v build
64cd build</userinput></screen>
65
66 <para>Prepare GCC for compilation:</para>
67
68<screen><userinput arch="default" remap="configure">mloptions="--disable-multilib"</userinput>
69<userinput arch="ml_32,ml_x32,ml_all" remap="configure">mloptions="--enable-multilib --with-multilib-list=m64"</userinput>
70<userinput arch="ml_32,ml_all" remap="configure">mloptions="$mloptions,m32"</userinput>
71<userinput arch="ml_x32,ml_all" remap="configure">mloptions="$mloptions,mx32"</userinput>
72<userinput remap="configure">SED=sed \
73../configure --prefix=/usr \
74 --enable-languages=c,c++ \
75 --disable-bootstrap \
76 --with-system-zlib \
77 $mloptions</userinput></screen>
78
79 <para>Note that for other languages, there are some prerequisites that
80 are not yet available. See the
81 <ulink url="&blfs-book;general/gcc.html">BLFS Book</ulink>
82 for instructions on how to build all of GCC's supported languages.</para>
83
84 <variablelist>
85 <title>The meaning of the new configure parameters:</title>
86
87 <varlistentry>
88 <term><envar>SED=sed</envar></term>
89 <listitem>
90 <para>Setting this environment variable prevents a hard-coded
91 path to /tools/bin/sed.</para>
92 </listitem>
93 </varlistentry>
94 <!--
95 <varlistentry>
96 <term><parameter>- -disable-libmpx</parameter></term>
97 <listitem>
98 <para>This switch tells GCC to not build mpx (Memory Protection
99 Extensions) that can cause problems on some processors. It has
100 been removed from the next version of gcc.</para>
101 </listitem>
102 </varlistentry>
103 -->
104 <varlistentry>
105 <term><parameter>--with-system-zlib</parameter></term>
106 <listitem>
107 <para>This switch tells GCC to link to the system installed copy of
108 the Zlib library, rather than its own internal copy.</para>
109 </listitem>
110 </varlistentry>
111 </variablelist>
112
113 <para>Compile the package:</para>
114
115<screen><userinput remap="make">make</userinput></screen>
116
117 <important>
118 <para>In this section, the test suite for GCC is considered
119 critical. Do not skip it under any circumstance.</para>
120 </important>
121
122 <para>One set of tests in the GCC test suite is known to exhaust the stack,
123 so increase the stack size prior to running the tests:</para>
124
125<screen><userinput remap="test">ulimit -s 32768</userinput></screen>
126
127 <para>Test the results as a non-privileged user, but do not stop at errors:</para>
128
129<screen><userinput remap="test">chown -Rv nobody .
130su nobody -s /bin/bash -c "PATH=$PATH make -k check"</userinput></screen>
131
132 <para>To receive a summary of the test suite results, run:</para>
133
134<screen><userinput remap="test">../contrib/test_summary</userinput></screen>
135
136 <para>For only the summaries, pipe the output through
137 <userinput>grep -A7 Summ</userinput>.</para>
138
139 <para>Results can be compared with those located at <ulink
140 url="&test-results;"/> and
141 <ulink url="https://gcc.gnu.org/ml/gcc-testresults/"/>.</para>
142
143 <para>Six tests related to get_time are known to fail. These are
144 apparently related to the en_HK locale.</para>
145
146 <para>Two tests named lookup.cc and reverse.cc in experimental/net
147 are known to fail in LFS chroot environment because they require
148 /etc/hosts and iana-etc.</para>
149
150 <para>A few unexpected failures cannot always be avoided. The GCC developers
151 are usually aware of these issues, but have not resolved them yet.
152 Unless the test results are vastly different from those at the above URL,
153 it is safe to continue.</para>
154
155 <!--note><para>
156 On some combinations of kernel configuration and AMD processors
157 there may be more than 1100 failures in the gcc.target/i386/mpx
158 tests (which are designed to test the MPX option on recent
159 Intel processors). These can safely be ignored on AMD
160 processors. These tests will also fail on Intel processors if MPX support
161 is not enabled in the kernel even though it is present on the CPU.
162 </para></note-->
163
164 <para>Install the package and remove an unneeded directory:</para>
165
166<screen><userinput remap="install">make install
167rm -rf /usr/lib/gcc/$(gcc -dumpmachine)/&gcc-version;/include-fixed/bits/</userinput></screen>
168
169 <para>The GCC build directory is owned by <systemitem class="username">
170 nobody</systemitem> now and the ownership of the installed header
171 directory (and its content) will be incorrect. Change the ownership to
172 <systemitem class="username">root</systemitem> user and group:</para>
173
174<screen><userinput remap="install">chown -v -R root:root \
175 /usr/lib/gcc/$(gcc -dumpmachine)/&gcc-version;/include{,-fixed}</userinput></screen>
176
177 <para>Create a symlink required by the <ulink
178 url="https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch03s09.html">FHS</ulink>
179 for "historical" reasons.</para>
180
181<screen><userinput remap="install">ln -sv ../usr/bin/cpp /lib</userinput></screen>
182
183 <para>Many packages use the name <command>cc</command> to call the C
184 compiler. To satisfy those packages, create a symlink:</para>
185
186<screen><userinput remap="install">ln -sv gcc /usr/bin/cc</userinput></screen>
187
188 <para>Add a compatibility symlink to enable building programs with
189 Link Time Optimization (LTO):</para>
190
191<screen><userinput remap="install">install -v -dm755 /usr/lib/bfd-plugins
192ln -sfv ../../libexec/gcc/$(gcc -dumpmachine)/&gcc-version;/liblto_plugin.so \
193 /usr/lib/bfd-plugins/</userinput></screen>
194
195 <para>Now that our final toolchain is in place, it is important to again ensure
196 that compiling and linking will work as expected. We do this by performing
197 the same sanity checks as we did earlier in the chapter:</para>
198
199 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
200 href="adjusting.xml"
201 xpointer="xpointer(//*[@os='a'])"/>
202
203 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
204 href="adjusting.xml"
205 xpointer="xpointer(//*[@os='b'])"/>
206
207 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
208 href="adjusting.xml"
209 xpointer="xpointer(//*[@os='c'])"/>
210
211 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
212 href="adjusting.xml"
213 xpointer="xpointer(//*[@os='d'])"/>
214
215 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
216 href="adjusting.xml"
217 xpointer="xpointer(//*[@os='e'])"/>
218
219 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
220 href="adjusting.xml"
221 xpointer="xpointer(//*[@os='f'])"/>
222
223<screen><computeroutput>/usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/../../../../lib/crt1.o succeeded
224/usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/../../../../lib/crti.o succeeded
225/usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/../../../../lib/crtn.o succeeded</computeroutput></screen>
226
227 <para>Depending on your machine architecture, the above may differ slightly,
228 the difference usually being the name of the directory
229 after <filename class="directory">/usr/lib/gcc</filename>. The important
230 thing to look for here is that <command>gcc</command> has found all three
231 <filename>crt*.o</filename> files under the
232 <filename class="directory">/usr/lib</filename> directory.</para>
233
234 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
235 href="adjusting.xml"
236 xpointer="xpointer(//*[@os='g'])"/>
237
238<screen><userinput>grep -B4 '^ /usr/include' dummy.log</userinput></screen>
239
240 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
241 href="adjusting.xml"
242 xpointer="xpointer(//*[@os='h'])"/>
243
244<screen><computeroutput>#include &lt;...&gt; search starts here:
245 /usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/include
246 /usr/local/include
247 /usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/include-fixed
248 /usr/include</computeroutput></screen>
249
250 <para>Again, note that the directory named after your target triplet may be
251 different than the above, depending on your architecture.</para>
252
253<!-- This appears to be obsolete
254
255 <note><para>As of version 4.3.0, GCC now unconditionally installs the
256 <filename>limits.h</filename> file into the private
257 <filename class="directory">include-fixed</filename> directory, and that
258 directory is required to be in place.</para></note>
259-->
260
261 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
262 href="adjusting.xml"
263 xpointer="xpointer(//*[@os='i'])"/>
264
265 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
266 href="adjusting.xml"
267 xpointer="xpointer(//*[@os='j'])"/>
268
269 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
270 href="adjusting.xml"
271 xpointer="xpointer(//*[@os='k'])"/>
272
273<screen><computeroutput>SEARCH_DIR("/usr/x86_64-pc-linux-gnu/lib64")
274SEARCH_DIR("/usr/local/lib64")
275SEARCH_DIR("/lib64")
276SEARCH_DIR("/usr/lib64")
277SEARCH_DIR("/usr/x86_64-pc-linux-gnu/lib")
278SEARCH_DIR("/usr/local/lib")
279SEARCH_DIR("/lib")
280SEARCH_DIR("/usr/lib");</computeroutput></screen>
281
282 <para arch="default">A 32-bit system may see a few different directories.
283 For example, here is the output from an i686 machine:</para>
284
285<screen arch="default"><computeroutput>SEARCH_DIR("/usr/i686-pc-linux-gnu/lib32")
286SEARCH_DIR("/usr/local/lib32")
287SEARCH_DIR("/lib32")
288SEARCH_DIR("/usr/lib32")
289SEARCH_DIR("/usr/i686-pc-linux-gnu/lib")
290SEARCH_DIR("/usr/local/lib")
291SEARCH_DIR("/lib")
292SEARCH_DIR("/usr/lib");</computeroutput></screen>
293
294 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
295 href="adjusting.xml"
296 xpointer="xpointer(//*[@os='l'])"/>
297
298 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
299 href="adjusting.xml"
300 xpointer="xpointer(//*[@os='m'])"/>
301
302 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
303 href="adjusting.xml"
304 xpointer="xpointer(//*[@os='n'])"/>
305
306 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
307 href="adjusting.xml"
308 xpointer="xpointer(//*[@os='o'])"/>
309
310 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
311 href="adjusting.xml"
312 xpointer="xpointer(//*[@os='p'])"/>
313
314 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
315 href="adjusting.xml"
316 xpointer="xpointer(//*[@os='q'])"/>
317
318 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
319 href="adjusting.xml"
320 xpointer="xpointer(//*[@os='r'])"/>
321
322 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
323 href="adjusting.xml"
324 xpointer="xpointer(//*[@os='s'])"/>
325
326 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
327 href="adjusting.xml"
328 xpointer="xpointer(//*[@os='t'])"/>
329
330 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
331 href="adjusting.xml"
332 xpointer="xpointer(//*[@os='u'])"/>
333
334 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
335 href="adjusting.xml"
336 xpointer="xpointer(//*[@os='v'])"/>
337
338 <para>Finally, move a misplaced file:</para>
339
340<screen><userinput remap="install">mkdir -pv /usr/share/gdb/auto-load/usr/lib
341mv -v /usr/lib/libstdc++*gdb.py /usr/share/gdb/auto-load/usr/lib</userinput></screen>
342
343 </sect2>
344
345 <sect2 id="contents-gcc" role="content">
346 <title>Contents of GCC</title>
347
348 <segmentedlist>
349 <segtitle>Installed programs</segtitle>
350 <segtitle>Installed libraries</segtitle>
351 <segtitle>Installed directories</segtitle>
352
353 <seglistitem>
354 <seg>c++, cc (link to gcc), cpp, g++, gcc,
355 gcc-ar, gcc-nm, gcc-ranlib, gcov, gcov-dump, and gcov-tool</seg>
356
357 <seg>libasan.{a,so}, libatomic.{a,so}, libcc1.so, libgcc.a, libgcc_eh.a,
358 libgcc_s.so, libgcov.a, libgomp.{a,so}, libitm.{a,so},
359 liblsan.{a,so}, liblto_plugin.so,
360 libquadmath.{a,so}, libssp.{a,so}, libssp_nonshared.a,
361 libstdc++.{a,so}, libstdc++fs.a, libsupc++.a, libtsan.{a,so},
362 and libubsan.{a,so}</seg>
363
364 <seg>/usr/include/c++, /usr/lib/gcc, /usr/libexec/gcc, and
365 /usr/share/gcc-&gcc-version;</seg>
366 </seglistitem>
367 </segmentedlist>
368
369 <variablelist>
370 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
371 <?dbfo list-presentation="list"?>
372 <?dbhtml list-presentation="table"?>
373
374 <varlistentry id="c">
375 <term><command>c++</command></term>
376 <listitem>
377 <para>The C++ compiler</para>
378 <indexterm zone="ch-system-gcc c">
379 <primary sortas="b-c++">c++</primary>
380 </indexterm>
381 </listitem>
382 </varlistentry>
383
384 <varlistentry id="cc">
385 <term><command>cc</command></term>
386 <listitem>
387 <para>The C compiler</para>
388 <indexterm zone="ch-system-gcc cc">
389 <primary sortas="b-cc">cc</primary>
390 </indexterm>
391 </listitem>
392 </varlistentry>
393
394 <varlistentry id="cpp">
395 <term><command>cpp</command></term>
396 <listitem>
397 <para>The C preprocessor; it is used by the compiler to expand the
398 #include, #define, and similar statements in the source files</para>
399 <indexterm zone="ch-system-gcc cpp">
400 <primary sortas="b-cpp">cpp</primary>
401 </indexterm>
402 </listitem>
403 </varlistentry>
404
405 <varlistentry id="g">
406 <term><command>g++</command></term>
407 <listitem>
408 <para>The C++ compiler</para>
409 <indexterm zone="ch-system-gcc g">
410 <primary sortas="b-g++">g++</primary>
411 </indexterm>
412 </listitem>
413 </varlistentry>
414
415 <varlistentry id="gcc">
416 <term><command>gcc</command></term>
417 <listitem>
418 <para>The C compiler</para>
419 <indexterm zone="ch-system-gcc gcc">
420 <primary sortas="b-gcc">gcc</primary>
421 </indexterm>
422 </listitem>
423 </varlistentry>
424
425 <varlistentry id="gcc-ar">
426 <term><command>gcc-ar</command></term>
427 <listitem>
428 <para>A wrapper around <command>ar</command> that adds a
429 plugin to the command line. This program is only used
430 to add "link time optimization" and is not useful with the
431 default build options</para>
432 <indexterm zone="ch-system-gcc gcc-ar">
433 <primary sortas="b-gcc-ar">gc-ar</primary>
434 </indexterm>
435 </listitem>
436 </varlistentry>
437
438 <varlistentry id="gcc-nm">
439 <term><command>gcc-nm</command></term>
440 <listitem>
441 <para>A wrapper around <command>nm</command> that adds a
442 plugin to the command line. This program is only used
443 to add "link time optimization" and is not useful with the
444 default build options</para>
445 <indexterm zone="ch-system-gcc gcc-nm">
446 <primary sortas="b-gcc-nm">gc-nm</primary>
447 </indexterm>
448 </listitem>
449 </varlistentry>
450
451 <varlistentry id="gcc-ranlib">
452 <term><command>gcc-ranlib</command></term>
453 <listitem>
454 <para>A wrapper around <command>ranlib</command> that adds a
455 plugin to the command line. This program is only used
456 to add "link time optimization" and is not useful with the
457 default build options</para>
458 <indexterm zone="ch-system-gcc gcc-ranlib">
459 <primary sortas="b-gcc-ranlib">gc-ranlib</primary>
460 </indexterm>
461 </listitem>
462 </varlistentry>
463
464 <varlistentry id="gcov">
465 <term><command>gcov</command></term>
466 <listitem>
467 <para>A coverage testing tool; it is used to analyze programs to
468 determine where optimizations will have the most effect</para>
469 <indexterm zone="ch-system-gcc gcov">
470 <primary sortas="b-gcov">gcov</primary>
471 </indexterm>
472 </listitem>
473 </varlistentry>
474
475 <varlistentry id="gcov-dump">
476 <term><command>gcov-dump</command></term>
477 <listitem>
478 <para>Offline gcda and gcno profile dump tool</para>
479 <indexterm zone="ch-system-gcc gcov-dump">
480 <primary sortas="b-gcov-dump">gcov-dump</primary>
481 </indexterm>
482 </listitem>
483 </varlistentry>
484
485 <varlistentry id="gcov-tool">
486 <term><command>gcov-tool</command></term>
487 <listitem>
488 <para>Offline gcda profile processing tool</para>
489 <indexterm zone="ch-system-gcc gcov-tool">
490 <primary sortas="b-gcov-tool">gcov-tool</primary>
491 </indexterm>
492 </listitem>
493 </varlistentry>
494
495 <varlistentry id="libasan">
496 <term><filename class="libraryfile">libasan</filename></term>
497 <listitem>
498 <para>The Address Sanitizer runtime library</para>
499 <indexterm zone="ch-system-gcc libasan">
500 <primary sortas="b-libasan">libasan</primary>
501 </indexterm>
502 </listitem>
503 </varlistentry>
504
505 <varlistentry id="libatomic">
506 <term><filename class="libraryfile">libatomic</filename></term>
507 <listitem>
508 <para>GCC atomic built-in runtime library</para>
509 <indexterm zone="ch-system-gcc libatomic">
510 <primary sortas="b-libatomic">libatomic</primary>
511 </indexterm>
512 </listitem>
513 </varlistentry>
514
515 <varlistentry id="libcc1">
516 <term><filename class="libraryfile">libcc1</filename></term>
517 <listitem>
518 <para>The C preprocessing library</para>
519 <indexterm zone="ch-system-gcc libcc1">
520 <primary sortas="b-libcc1">libcc1</primary>
521 </indexterm>
522 </listitem>
523 </varlistentry>
524
525 <varlistentry id="libgcc">
526 <term><filename class="libraryfile">libgcc</filename></term>
527 <listitem>
528 <para>Contains run-time support for <command>gcc</command></para>
529 <indexterm zone="ch-system-gcc libgcc">
530 <primary sortas="c-libgcc">libgcc</primary>
531 </indexterm>
532 </listitem>
533 </varlistentry>
534
535 <varlistentry id="libgcov">
536 <term><filename class="libraryfile">libgcov</filename></term>
537 <listitem>
538 <para>This library is linked in to a program when GCC is instructed
539 to enable profiling</para>
540 <indexterm zone="ch-system-gcc libgcov">
541 <primary sortas="c-libgcov">libgcov</primary>
542 </indexterm>
543 </listitem>
544 </varlistentry>
545
546 <varlistentry id="libgomp">
547 <term><filename class="libraryfile">libgomp</filename></term>
548 <listitem>
549 <para>GNU implementation of the OpenMP API for multi-platform
550 shared-memory parallel programming in C/C++ and Fortran</para>
551 <indexterm zone="ch-system-gcc libgomp">
552 <primary sortas="c-libgomp">libgomp</primary>
553 </indexterm>
554 </listitem>
555 </varlistentry>
556
557 <varlistentry id="liblsan">
558 <term><filename class="libraryfile">liblsan</filename></term>
559 <listitem>
560 <para>The Leak Sanitizer runtime library</para>
561 <indexterm zone="ch-system-gcc liblsan">
562 <primary sortas="c-liblsan">liblsan</primary>
563 </indexterm>
564 </listitem>
565 </varlistentry>
566
567 <varlistentry id="liblto_plugin">
568 <term><filename class="libraryfile">liblto_plugin</filename></term>
569 <listitem>
570 <para>GCC's Link Time Optimization (LTO) plugin allows GCC to perform
571 optimizations across compilation units</para>
572 <indexterm zone="ch-system-gcc liblto_plugin">
573 <primary sortas="c-liblto_plugin">liblto_plugin</primary>
574 </indexterm>
575 </listitem>
576 </varlistentry>
577
578 <varlistentry id="libquadmath">
579 <term><filename class="libraryfile">libquadmath</filename></term>
580 <listitem>
581 <para>GCC Quad Precision Math Library API</para>
582 <indexterm zone="ch-system-gcc libquadmath">
583 <primary sortas="c-libquadmath">libquadmath</primary>
584 </indexterm>
585 </listitem>
586 </varlistentry>
587
588 <varlistentry id="libssp">
589 <term><filename class="libraryfile">libssp</filename></term>
590 <listitem>
591 <para>Contains routines supporting GCC's stack-smashing protection
592 functionality</para>
593 <indexterm zone="ch-system-gcc libssp">
594 <primary sortas="c-libssp">libssp</primary>
595 </indexterm>
596 </listitem>
597 </varlistentry>
598
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
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
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
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
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
650 </variablelist>
651
652 </sect2>
653
654</sect1>
Note: See TracBrowser for help on using the repository browser.