source: chapter08/gcc.xml@ e669f5f

xry111/mips64el
Last change on this file since e669f5f was e669f5f, checked in by Xi Ruoyao <xry111@…>, 3 days ago

mips64el: gcc: Update known failures and remove x86-specific sed

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