source: chapter06/gcc.xml@ 2be021c

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 7.5 7.6 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 2be021c was 4783efe, checked in by Bruce Dubbs <bdubbs@…>, 10 years ago

Enable building sulogin in util-linux.
Supress installing sysvinit's sulogin.
Several text updates from Chris Staub.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10386 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 19.8 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[b06ca36]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[673b0d8]4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
[6a82dd9]7
[81fd230]8<sect1 id="ch-system-gcc" role="wrap">
[6a82dd9]9 <?dbhtml filename="gcc.html"?>
10
[e747759]11 <sect1info condition="script">
12 <productname>gcc</productname>
13 <productnumber>&gcc-version;</productnumber>
14 <address>&gcc-url;</address>
15 </sect1info>
16
[6a82dd9]17 <title>GCC-&gcc-version;</title>
18
19 <indexterm zone="ch-system-gcc">
20 <primary sortas="a-GCC">GCC</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
[6370fa6]25
[6a82dd9]26 <para>The GCC package contains the GNU compiler collection, which includes
27 the C and C++ compilers.</para>
[673b0d8]28
[6a82dd9]29 <segmentedlist>
30 <segtitle>&buildtime;</segtitle>
31 <segtitle>&diskspace;</segtitle>
[5888299]32
[6a82dd9]33 <seglistitem>
[e4a5635]34 <seg>&gcc-ch6-sbu;</seg>
35 <seg>&gcc-ch6-du;</seg>
[6a82dd9]36 </seglistitem>
37 </segmentedlist>
[3554fa3a]38
[6a82dd9]39 </sect2>
40
41 <sect2 role="installation">
42 <title>Installation of GCC</title>
43
[07312f6]44 <para>As in <xref linkend="ch-tools-gcc-pass2"/>, apply the following
45 <command>sed</command> to force the build to use the
46 <option>-fomit-frame-pointer</option> compiler flag in order to ensure
[2ca8941]47 consistent compiler builds:</para>
[2e02c35]48
[6e88633]49<screen><userinput remap="pre">case `uname -m` in
[9f5aaf7]50 i?86) sed -i 's/^T_CFLAGS =$/&amp; -fomit-frame-pointer/' gcc/Makefile.in ;;
[6e88633]51esac</userinput></screen>
[2e02c35]52
[ff0f063]53 <para>Workaround a bug so that GCC doesn't install
54 <filename class="libraryfile">libiberty.a</filename>, which is already
55 provided by Binutils:</para>
56
57<screen><userinput remap="pre">sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in</userinput></screen>
58
[289207b]59 <para>Also fix an error in one of the check Makefiles and disable one test in
60 the g++ libmudflap test suite:</para>
[2efa44a]61
[289207b]62<screen><userinput remap="pre">sed -i -e /autogen/d -e /check.sh/d fixincludes/Makefile.in
63mv -v libmudflap/testsuite/libmudflap.c++/pass41-frag.cxx{,.disable}</userinput></screen>
[2efa44a]64
[6a82dd9]65 <para>The GCC documentation recommends building GCC outside of the source
66 directory in a dedicated build directory:</para>
[73aedd1d]67
[0445a3d]68<screen><userinput remap="pre">mkdir -v ../gcc-build
[73aedd1d]69cd ../gcc-build</userinput></screen>
70
[6a82dd9]71 <para>Prepare GCC for compilation:</para>
[73aedd1d]72
[ff0f063]73<screen><userinput remap="configure">../gcc-&gcc-version;/configure --prefix=/usr \
74 --libexecdir=/usr/lib \
75 --enable-shared \
76 --enable-threads=posix \
77 --enable-__cxa_atexit \
78 --enable-clocale=gnu \
79 --enable-languages=c,c++ \
80 --disable-multilib \
81 --disable-bootstrap \
82 --disable-install-libiberty \
[9f5aaf7]83 --with-system-zlib</userinput></screen>
[73aedd1d]84
[1cdaff9]85 <para>Note that for other languages, there are some prerequisites that
86 are not available. See the BLFS Book for instructions on how to
[182d5d3]87 build all the GCC supported languages.</para>
88
[ae4d45a]89 <variablelist>
90 <title>The meaning of the new configure option:</title>
91
[ff0f063]92 <varlistentry>
93 <term><parameter>--disable-install-libiberty</parameter></term>
94 <listitem>
95 <para>This prevents GCC from installing its own copy of libiberty,
96 which is already provided by Binutils-&binutils-version;.</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
[8dac2e2]104 the Zlib library, rather than its own internal copy.</para>
[ae4d45a]105 </listitem>
106 </varlistentry>
107 </variablelist>
108
[6a82dd9]109 <para>Compile the package:</para>
[73aedd1d]110
[0445a3d]111<screen><userinput remap="make">make</userinput></screen>
[73aedd1d]112
[6a82dd9]113 <important>
114 <para>In this section, the test suite for GCC is considered
115 critical. Do not skip it under any circumstance.</para>
116 </important>
[81fd230]117
[4e48f56e]118 <para>One set of tests in the GCC test suite is known to exhaust the stack,
119 so increase the stack size prior to running the tests:</para>
120
[2efa44a]121<screen><userinput remap="test">ulimit -s 32768</userinput></screen>
[4e48f56e]122
[6a82dd9]123 <para>Test the results, but do not stop at errors:</para>
[73aedd1d]124
[0445a3d]125<screen><userinput remap="test">make -k check</userinput></screen>
[73aedd1d]126
[9278974d]127 <para>To receive a summary of the test suite results, run:</para>
128
[0445a3d]129<screen><userinput remap="test">../gcc-&gcc-version;/contrib/test_summary</userinput></screen>
[9278974d]130
131 <para>For only the summaries, pipe the output through
132 <userinput>grep -A7 Summ</userinput>.</para>
133
134 <para>Results can be compared with those located at <ulink
[536ce32]135 url="&test-results;"/> and <ulink url="http://gcc.gnu.org/ml/gcc-testresults/"/>.</para>
[9278974d]136
137 <para>A few unexpected failures cannot always be avoided. The GCC developers
138 are usually aware of these issues, but have not resolved them yet. In
139 particular, the <filename class="libraryfile">libmudflap</filename> tests
[16a59d0d]140 are known to be particularly problematic as a result of a bug in GCC
[9278974d]141 (<ulink url="http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20003"/>).
142 Unless the test results are vastly different from those at the above URL,
143 it is safe to continue.</para>
[73aedd1d]144
[6a82dd9]145 <para>Install the package:</para>
[73aedd1d]146
[0445a3d]147<screen><userinput remap="install">make install</userinput></screen>
[73aedd1d]148
[6a82dd9]149 <para>Some packages expect the C preprocessor to be installed in the
150 <filename class="directory">/lib</filename> directory.
151 To support those packages, create this symlink:</para>
[73aedd1d]152
[0445a3d]153<screen><userinput remap="install">ln -sv ../usr/bin/cpp /lib</userinput></screen>
[73aedd1d]154
[6a82dd9]155 <para>Many packages use the name <command>cc</command> to call the C
156 compiler. To satisfy those packages, create a symlink:</para>
[1ba726f]157
[0445a3d]158<screen><userinput remap="install">ln -sv gcc /usr/bin/cc</userinput></screen>
[1ba726f]159
[09f1daf]160 <para>Now that our final toolchain is in place, it is important to again ensure
161 that compiling and linking will work as expected. We do this by performing
162 the same sanity checks as we did earlier in the chapter:</para>
163
[d9441360]164 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]165 href="adjusting.xml"
[09f1daf]166 xpointer="xpointer(//*[@os='a'])"/>
167
[d9441360]168 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]169 href="adjusting.xml"
[09f1daf]170 xpointer="xpointer(//*[@os='b'])"/>
171
[d9441360]172 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]173 href="adjusting.xml"
[09f1daf]174 xpointer="xpointer(//*[@os='c'])"/>
175
[d9441360]176 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]177 href="adjusting.xml"
[09f1daf]178 xpointer="xpointer(//*[@os='d'])"/>
179
[d9441360]180 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]181 href="adjusting.xml"
[09f1daf]182 xpointer="xpointer(//*[@os='e'])"/>
183
[d9441360]184 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]185 href="adjusting.xml"
[09f1daf]186 xpointer="xpointer(//*[@os='f'])"/>
187
188<screen><computeroutput>/usr/lib/gcc/i686-pc-linux-gnu/&gcc-version;/../../../crt1.o succeeded
189/usr/lib/gcc/i686-pc-linux-gnu/&gcc-version;/../../../crti.o succeeded
190/usr/lib/gcc/i686-pc-linux-gnu/&gcc-version;/../../../crtn.o succeeded</computeroutput></screen>
191
[6e88633]192 <para>Depending on your machine architecture, the above may differ slightly,
193 the difference usually being the name of the directory
194 after <filename class="directory">/usr/lib/gcc</filename>. If your machine is
195 a 64-bit system, you may also see a directory named <filename class="directory">lib64</filename>
196 towards the end of the string. The important thing to
[5f7456b]197 look for here is that <command>gcc</command> has found all three
198 <filename>crt*.o</filename> files under the
199 <filename class="directory">/usr/lib</filename> directory.</para>
[6e88633]200
[d9441360]201 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]202 href="adjusting.xml"
[09f1daf]203 xpointer="xpointer(//*[@os='g'])"/>
204
[041c8f67]205<screen><userinput>grep -B4 '^ /usr/include' dummy.log</userinput></screen>
[e9a652b]206
[d9441360]207 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]208 href="adjusting.xml"
[09f1daf]209 xpointer="xpointer(//*[@os='h'])"/>
210
[e9a652b]211<screen><computeroutput>#include &lt;...&gt; search starts here:
[865fe24]212 /usr/lib/gcc/i686-pc-linux-gnu/&gcc-version;/include
[c528e3a]213 /usr/local/include
[3f39abf3]214 /usr/lib/gcc/i686-pc-linux-gnu/&gcc-version;/include-fixed
[e9a652b]215 /usr/include</computeroutput></screen>
216
[6e88633]217 <para>Again, note that the directory named after your target triplet may be
218 different than the above, depending on your architecture.</para>
219
[3f39abf3]220 <note><para>As of version 4.3.0, GCC now unconditionally installs the
221 <filename>limits.h</filename> file into the private
[041c8f67]222 <filename class="directory">include-fixed</filename> directory, and that
[3f39abf3]223 directory is required to be in place.</para></note>
224
[d9441360]225 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]226 href="adjusting.xml"
[09f1daf]227 xpointer="xpointer(//*[@os='i'])"/>
228
[d9441360]229 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]230 href="adjusting.xml"
[09f1daf]231 xpointer="xpointer(//*[@os='j'])"/>
232
[d9441360]233 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]234 href="adjusting.xml"
[09f1daf]235 xpointer="xpointer(//*[@os='k'])"/>
236
[e9a652b]237<screen><computeroutput>SEARCH_DIR("/usr/i686-pc-linux-gnu/lib")
238SEARCH_DIR("/usr/local/lib")
239SEARCH_DIR("/lib")
[6e88633]240SEARCH_DIR("/usr/lib");</computeroutput></screen>
241
242 <para>A 64-bit system may see a few more directories. For example, here
[f1994dc]243 is the output from an x86_64 machine:</para>
[6e88633]244
245<screen><computeroutput>SEARCH_DIR("/usr/x86_64-unknown-linux-gnu/lib64")
246SEARCH_DIR("/usr/local/lib64")
247SEARCH_DIR("/lib64")
248SEARCH_DIR("/usr/lib64")
249SEARCH_DIR("/usr/x86_64-unknown-linux-gnu/lib")
250SEARCH_DIR("/usr/local/lib")
251SEARCH_DIR("/lib")
[e9a652b]252SEARCH_DIR("/usr/lib");</computeroutput></screen>
253
[d9441360]254 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]255 href="adjusting.xml"
[09f1daf]256 xpointer="xpointer(//*[@os='l'])"/>
257
[d9441360]258 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]259 href="adjusting.xml"
[09f1daf]260 xpointer="xpointer(//*[@os='m'])"/>
261
[d9441360]262 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]263 href="adjusting.xml"
[09f1daf]264 xpointer="xpointer(//*[@os='n'])"/>
265
[d9441360]266 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]267 href="adjusting.xml"
[09f1daf]268 xpointer="xpointer(//*[@os='o'])"/>
269
[d9441360]270 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]271 href="adjusting.xml"
[09f1daf]272 xpointer="xpointer(//*[@os='p'])"/>
273
[d9441360]274 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]275 href="adjusting.xml"
[09f1daf]276 xpointer="xpointer(//*[@os='q'])"/>
277
[d9441360]278 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]279 href="adjusting.xml"
[09f1daf]280 xpointer="xpointer(//*[@os='r'])"/>
281
[d9441360]282 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]283 href="adjusting.xml"
[09f1daf]284 xpointer="xpointer(//*[@os='s'])"/>
285
[d9441360]286 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]287 href="adjusting.xml"
[09f1daf]288 xpointer="xpointer(//*[@os='t'])"/>
[6a82dd9]289
[d9441360]290 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]291 href="adjusting.xml"
[e9a652b]292 xpointer="xpointer(//*[@os='u'])"/>
293
[d9441360]294 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[1a3e6a3]295 href="adjusting.xml"
[e9a652b]296 xpointer="xpointer(//*[@os='v'])"/>
297
[970a126]298 <para>Finally, move a misplaced file:</para>
[39ec01c]299
[970a126]300<screen><userinput remap="install">mkdir -pv /usr/share/gdb/auto-load/usr/lib
301mv -v /usr/lib/*gdb.py /usr/share/gdb/auto-load/usr/lib</userinput></screen>
[39ec01c]302
[6a82dd9]303 </sect2>
304
305 <sect2 id="contents-gcc" role="content">
306 <title>Contents of GCC</title>
307
308 <segmentedlist>
309 <segtitle>Installed programs</segtitle>
310 <segtitle>Installed libraries</segtitle>
[fe05b08]311 <segtitle>Installed directories</segtitle>
[6a82dd9]312
313 <seglistitem>
[2ca8941]314 <seg>c++, cc (link to gcc), cpp, g++, gcc,
[b5b97081]315 gcc-ar, gcc-nm, gcc-ranlib, and gcov</seg>
[e0901b3]316
[b5b97081]317 <seg>libasan.{a,so}, libatomic.{a,so}, libgcc.a, libgcc_eh.a,
318 libgcc_s.so, libgcov.a, libgomp.{a,so}, libitm.{a,so},
[3119ddc]319 liblto_plugin.so, libmudflap.{a,so}, libmudflapth.{a,so},
320 libquadmath.{a,so}, libssp.{a,so},
[f6b1d91]321 libssp_nonshared.a, libstdc++.{a,so}, libsupc++.a and libtsan.{a,so}</seg>
[2ca8941]322
[fe05b08]323 <seg>/usr/include/c++, /usr/lib/gcc, /usr/share/gcc-&gcc-version;</seg>
[6a82dd9]324 </seglistitem>
325 </segmentedlist>
326
327 <variablelist>
328 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
329 <?dbfo list-presentation="list"?>
330 <?dbhtml list-presentation="table"?>
331
[75128571]332 <varlistentry id="c">
333 <term><command>c++</command></term>
334 <listitem>
335 <para>The C++ compiler</para>
336 <indexterm zone="ch-system-gcc c">
337 <primary sortas="b-c++">c++</primary>
338 </indexterm>
339 </listitem>
340 </varlistentry>
341
[6a82dd9]342 <varlistentry id="cc">
343 <term><command>cc</command></term>
344 <listitem>
345 <para>The C compiler</para>
346 <indexterm zone="ch-system-gcc cc">
347 <primary sortas="b-cc">cc</primary>
348 </indexterm>
349 </listitem>
350 </varlistentry>
351
352 <varlistentry id="cpp">
353 <term><command>cpp</command></term>
354 <listitem>
355 <para>The C preprocessor; it is used by the compiler to expand the
356 #include, #define, and similar statements in the source files</para>
357 <indexterm zone="ch-system-gcc cpp">
358 <primary sortas="b-cpp">cpp</primary>
359 </indexterm>
360 </listitem>
361 </varlistentry>
362
363 <varlistentry id="g">
364 <term><command>g++</command></term>
365 <listitem>
366 <para>The C++ compiler</para>
367 <indexterm zone="ch-system-gcc g">
368 <primary sortas="b-g++">g++</primary>
369 </indexterm>
370 </listitem>
371 </varlistentry>
372
373 <varlistentry id="gcc">
374 <term><command>gcc</command></term>
375 <listitem>
376 <para>The C compiler</para>
377 <indexterm zone="ch-system-gcc gcc">
378 <primary sortas="b-gcc">gcc</primary>
379 </indexterm>
380 </listitem>
381 </varlistentry>
382
[e0901b3]383 <varlistentry id="gcc-ar">
384 <term><command>gcc-ar</command></term>
385 <listitem>
386 <para>A wrapper around <command>ar</command> that adds a
387 plugin to the command line. This program is only used
388 to add "link time optization" and is not useful with the
389 default build options.</para>
390 <indexterm zone="ch-system-gcc gcc-ar">
391 <primary sortas="b-gcc-ar">gc-ar</primary>
392 </indexterm>
393 </listitem>
394 </varlistentry>
395
396 <varlistentry id="gcc-nm">
397 <term><command>gcc-nm</command></term>
398 <listitem>
399 <para>A wrapper around <command>nm</command> that adds a
400 plugin to the command line. This program is only used
401 to add "link time optization" and is not useful with the
402 default build options.</para>
403 <indexterm zone="ch-system-gcc gcc-nm">
404 <primary sortas="b-gcc-nm">gc-nm</primary>
405 </indexterm>
406 </listitem>
407 </varlistentry>
408
409 <varlistentry id="gcc-ranlib">
410 <term><command>gcc-ranlib</command></term>
411 <listitem>
412 <para>A wrapper around <command>ranlib</command> that adds a
413 plugin to the command line. This program is only used
414 to add "link time optization" and is not useful with the
415 default build options.</para>
416 <indexterm zone="ch-system-gcc gcc-ranlib">
417 <primary sortas="b-gcc-ranlib">gc-ranlib</primary>
418 </indexterm>
419 </listitem>
420 </varlistentry>
[6a82dd9]421
422 <varlistentry id="gcov">
423 <term><command>gcov</command></term>
424 <listitem>
425 <para>A coverage testing tool; it is used to analyze programs to
426 determine where optimizations will have the most effect</para>
427 <indexterm zone="ch-system-gcc gcov">
428 <primary sortas="b-gcov">gcov</primary>
429 </indexterm>
[4783efe]430 </listitem>
431 </varlistentry>
432
433 <varlistentry id="libasan">
434 <term><command>libasan</command></term>
435 <listitem>
436 <para>The Address Sanitizer runtime library</para>
437 <indexterm zone="ch-system-gcc libasan">
438 <primary sortas="b-libasan">libasan</primary>
439 </indexterm>
[6a82dd9]440 </listitem>
441 </varlistentry>
442
443 <varlistentry id="libgcc">
444 <term><filename class="libraryfile">libgcc</filename></term>
445 <listitem>
446 <para>Contains run-time support for <command>gcc</command></para>
447 <indexterm zone="ch-system-gcc libgcc">
448 <primary sortas="c-libgcc*">libgcc*</primary>
449 </indexterm>
450 </listitem>
451 </varlistentry>
452
[90aae6b]453 <varlistentry id="libgcov">
454 <term><filename class="libraryfile">libgcov</filename></term>
455 <listitem>
456 <para>This library is linked in to a program when GCC is instructed
457 to enable profiling</para>
458 <indexterm zone="ch-system-gcc libgcov">
459 <primary sortas="c-libgcov">libgcov</primary>
460 </indexterm>
461 </listitem>
462 </varlistentry>
463
464 <varlistentry id="libgomp">
465 <term><filename class="libraryfile">libgomp</filename></term>
466 <listitem>
467 <para>GNU implementation of the OpenMP API for multi-platform
468 shared-memory parallel programming in C/C++ and Fortran</para>
469 <indexterm zone="ch-system-gcc libgomp">
470 <primary sortas="c-libgomp">libgomp</primary>
471 </indexterm>
472 </listitem>
473 </varlistentry>
474
[3119ddc]475 <varlistentry id="liblto_plugin">
476 <term><filename class="libraryfile">liblto_plugin</filename></term>
477 <listitem>
478 <para>GCC's Link Time Optimization (LTO) plugin allows GCC to perform
479 optimizations across compilation units.</para>
480 <indexterm zone="ch-system-gcc liblto_plugin">
481 <primary sortas="c-liblto_plugin*">liblto_plugin*</primary>
482 </indexterm>
483 </listitem>
484 </varlistentry>
485
[2791a8e]486 <varlistentry id="libmudflap">
487 <term><filename class="libraryfile">libmudflap</filename></term>
488 <listitem>
489 <para>Contains routines that support GCC's bounds checking
490 functionality</para>
491 <indexterm zone="ch-system-gcc libmudflap">
492 <primary sortas="c-libmudflap*">libmudflap*</primary>
493 </indexterm>
494 </listitem>
495 </varlistentry>
496
[3119ddc]497 <varlistentry id="libquadmath">
498 <term><filename class="libraryfile">libquadmath</filename></term>
499 <listitem>
500 <para>GCC Quad Precision Math Library API</para>
501 <indexterm zone="ch-system-gcc libquadmath">
502 <primary sortas="c-libquadmath*">libquadmath*</primary>
503 </indexterm>
504 </listitem>
505 </varlistentry>
506
[2791a8e]507 <varlistentry id="libssp">
508 <term><filename class="libraryfile">libssp</filename></term>
509 <listitem>
510 <para>Contains routines supporting GCC's stack-smashing protection
511 functionality</para>
512 <indexterm zone="ch-system-gcc libssp">
513 <primary sortas="c-libssp*">libssp*</primary>
514 </indexterm>
515 </listitem>
516 </varlistentry>
517
[6a82dd9]518 <varlistentry id="libstdc">
519 <term><filename class="libraryfile">libstdc++</filename></term>
520 <listitem>
521 <para>The standard C++ library</para>
522 <indexterm zone="ch-system-gcc libstdc">
523 <primary sortas="c-libstdc++">libstdc++</primary>
524 </indexterm>
525 </listitem>
526 </varlistentry>
527
528 <varlistentry id="libsupc">
529 <term><filename class="libraryfile">libsupc++</filename></term>
530 <listitem>
531 <para>Provides supporting routines for the C++ programming
532 language</para>
533 <indexterm zone="ch-system-gcc libsupc">
534 <primary sortas="c-libsupc++">libsupc++</primary>
535 </indexterm>
536 </listitem>
537 </varlistentry>
538
[f6b1d91]539 <varlistentry id="libtsan">
540 <term><filename class="libraryfile">libtsan</filename></term>
541 <listitem>
542 <para>The Thread Sanitizer runtime library</para>
543 <indexterm zone="ch-system-gcc libtsan">
544 <primary sortas="c-libtsan">libtsan</primary>
545 </indexterm>
546 </listitem>
547 </varlistentry>
548
[6a82dd9]549 </variablelist>
550
551 </sect2>
[673b0d8]552
553</sect1>
Note: See TracBrowser for help on using the repository browser.