gcc.xml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573
  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. <sect1 id="ch-system-gcc" role="wrap">
  8. <?dbhtml filename="gcc.html"?>
  9. <sect1info condition="script">
  10. <productname>gcc</productname>
  11. <productnumber>&gcc-version;</productnumber>
  12. <address>&gcc-url;</address>
  13. </sect1info>
  14. <title>GCC-&gcc-version;</title>
  15. <indexterm zone="ch-system-gcc">
  16. <primary sortas="a-GCC">GCC</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The GCC package contains the GNU compiler collection, which includes
  21. the C and C++ compilers.</para>
  22. <segmentedlist>
  23. <segtitle>&buildtime;</segtitle>
  24. <segtitle>&diskspace;</segtitle>
  25. <seglistitem>
  26. <seg>&gcc-ch6-sbu;</seg>
  27. <seg>&gcc-ch6-du;</seg>
  28. </seglistitem>
  29. </segmentedlist>
  30. </sect2>
  31. <sect2 role="installation">
  32. <title>Installation of GCC</title>
  33. <para>As in Chapter 5, fix a problem identified upstream:</para>
  34. <screen><userinput remap="pre">sed -i 's/if \((code.*))\)/if (\1 \&amp;\&amp; \!DEBUG_INSN_P (insn))/' gcc/sched-deps.c</userinput></screen>
  35. <!--
  36. <para>First fix a problem identified upstream that causes some
  37. programs to fail:</para>
  38. <screen><userinput remap="pre">patch -Np1 -i ../&gcc-upstream-patch;</userinput></screen>
  39. -->
  40. <!--
  41. <para>As in <xref linkend="ch-tools-gcc-pass2"/>, apply the following
  42. <command>sed</command> to force the build to use the
  43. <option>-fomit-frame-pointer</option> compiler flag in order to ensure
  44. consistent compiler builds:</para>
  45. <screen><userinput remap="pre">case `uname -m` in
  46. i?86) sed -i 's/^T_CFLAGS =$/&amp; -fomit-frame-pointer/' gcc/Makefile.in ;;
  47. esac</userinput></screen>
  48. -->
  49. <para>The GCC documentation recommends building GCC outside of the source
  50. directory in a dedicated build directory:</para>
  51. <screen><userinput remap="pre">mkdir -v ../gcc-build
  52. cd ../gcc-build</userinput></screen>
  53. <para>Prepare GCC for compilation:</para>
  54. <screen><userinput remap="configure">SED=sed \
  55. ../gcc-&gcc-version;/configure \
  56. --prefix=/usr \
  57. --enable-languages=c,c++ \
  58. --disable-multilib \
  59. --disable-bootstrap \
  60. --with-system-zlib</userinput></screen>
  61. <para>Note that for other languages, there are some prerequisites that
  62. are not yet available. See the
  63. <ulink url="&blfs-root;view/&short-version;/general/gcc.html">BLFS Book</ulink>
  64. for instructions on how to build all of GCC's supported languages.</para>
  65. <variablelist>
  66. <title>The meaning of the new configure option:</title>
  67. <varlistentry>
  68. <term><envar>SED=sed</envar></term>
  69. <listitem>
  70. <para>Setting this environment variable prevents a hard-coded
  71. path to /tools/bin/sed.</para>
  72. </listitem>
  73. </varlistentry>
  74. <varlistentry>
  75. <term><parameter>--with-system-zlib</parameter></term>
  76. <listitem>
  77. <para>This switch tells GCC to link to the system installed copy of
  78. the Zlib library, rather than its own internal copy.</para>
  79. </listitem>
  80. </varlistentry>
  81. </variablelist>
  82. <para>Compile the package:</para>
  83. <screen><userinput remap="make">make</userinput></screen>
  84. <important>
  85. <para>In this section, the test suite for GCC is considered
  86. critical. Do not skip it under any circumstance.</para>
  87. </important>
  88. <para>One set of tests in the GCC test suite is known to exhaust the stack,
  89. so increase the stack size prior to running the tests:</para>
  90. <screen><userinput remap="test">ulimit -s 32768</userinput></screen>
  91. <para>Test the results, but do not stop at errors:</para>
  92. <screen><userinput remap="test">make -k check</userinput></screen>
  93. <para>To receive a summary of the test suite results, run:</para>
  94. <screen><userinput remap="test">../gcc-&gcc-version;/contrib/test_summary</userinput></screen>
  95. <para>For only the summaries, pipe the output through
  96. <userinput>grep -A7 Summ</userinput>.</para>
  97. <para>Results can be compared with those located at <ulink
  98. url="&test-results;"/> and <ulink url="http://gcc.gnu.org/ml/gcc-testresults/"/>.</para>
  99. <para>A few unexpected failures cannot always be avoided. The GCC developers
  100. are usually aware of these issues, but have not resolved them yet. <!-- In
  101. particular, the <filename class="libraryfile">libmudflap</filename> tests
  102. are known to be particularly problematic as a result of a bug in GCC
  103. (<ulink url="http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20003"/>). -->
  104. Unless the test results are vastly different from those at the above URL,
  105. it is safe to continue.</para>
  106. <para>Install the package:</para>
  107. <screen><userinput remap="install">make install</userinput></screen>
  108. <para>Some packages expect the C preprocessor to be installed in the
  109. <filename class="directory">/lib</filename> directory.
  110. To support those packages, create this symlink:</para>
  111. <screen><userinput remap="install">ln -sv ../usr/bin/cpp /lib</userinput></screen>
  112. <para>Many packages use the name <command>cc</command> to call the C
  113. compiler. To satisfy those packages, create a symlink:</para>
  114. <screen><userinput remap="install">ln -sv gcc /usr/bin/cc</userinput></screen>
  115. <para>Add a compatibility symlink to enable building programs with
  116. Link Time Optimization (LTO):</para>
  117. <screen><userinput remap="install">install -dm755 /usr/lib/bfd-plugins
  118. ln -sfv ../../libexec/gcc/$(gcc -dumpmachine)/&gcc-version;/liblto_plugin.so /usr/lib/bfd-plugins/</userinput></screen>
  119. <para>Now that our final toolchain is in place, it is important to again ensure
  120. that compiling and linking will work as expected. We do this by performing
  121. the same sanity checks as we did earlier in the chapter:</para>
  122. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  123. href="adjusting.xml"
  124. xpointer="xpointer(//*[@os='a'])"/>
  125. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  126. href="adjusting.xml"
  127. xpointer="xpointer(//*[@os='b'])"/>
  128. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  129. href="adjusting.xml"
  130. xpointer="xpointer(//*[@os='c'])"/>
  131. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  132. href="adjusting.xml"
  133. xpointer="xpointer(//*[@os='d'])"/>
  134. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  135. href="adjusting.xml"
  136. xpointer="xpointer(//*[@os='e'])"/>
  137. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  138. href="adjusting.xml"
  139. xpointer="xpointer(//*[@os='f'])"/>
  140. <screen><computeroutput>/usr/lib/gcc/i686-pc-linux-gnu/&gcc-version;/../../../crt1.o succeeded
  141. /usr/lib/gcc/i686-pc-linux-gnu/&gcc-version;/../../../crti.o succeeded
  142. /usr/lib/gcc/i686-pc-linux-gnu/&gcc-version;/../../../crtn.o succeeded</computeroutput></screen>
  143. <para>Depending on your machine architecture, the above may differ slightly,
  144. the difference usually being the name of the directory
  145. after <filename class="directory">/usr/lib/gcc</filename>. If your machine is
  146. a 64-bit system, you may also see a directory named <filename class="directory">lib64</filename>
  147. towards the end of the string. The important thing to
  148. look for here is that <command>gcc</command> has found all three
  149. <filename>crt*.o</filename> files under the
  150. <filename class="directory">/usr/lib</filename> directory.</para>
  151. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  152. href="adjusting.xml"
  153. xpointer="xpointer(//*[@os='g'])"/>
  154. <screen><userinput>grep -B4 '^ /usr/include' dummy.log</userinput></screen>
  155. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  156. href="adjusting.xml"
  157. xpointer="xpointer(//*[@os='h'])"/>
  158. <screen><computeroutput>#include &lt;...&gt; search starts here:
  159. /usr/lib/gcc/i686-pc-linux-gnu/&gcc-version;/include
  160. /usr/local/include
  161. /usr/lib/gcc/i686-pc-linux-gnu/&gcc-version;/include-fixed
  162. /usr/include</computeroutput></screen>
  163. <para>Again, note that the directory named after your target triplet may be
  164. different than the above, depending on your architecture.</para>
  165. <note><para>As of version 4.3.0, GCC now unconditionally installs the
  166. <filename>limits.h</filename> file into the private
  167. <filename class="directory">include-fixed</filename> directory, and that
  168. directory is required to be in place.</para></note>
  169. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  170. href="adjusting.xml"
  171. xpointer="xpointer(//*[@os='i'])"/>
  172. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  173. href="adjusting.xml"
  174. xpointer="xpointer(//*[@os='j'])"/>
  175. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  176. href="adjusting.xml"
  177. xpointer="xpointer(//*[@os='k'])"/>
  178. <screen><computeroutput>SEARCH_DIR("/usr/i686-pc-linux-gnu/lib32")
  179. SEARCH_DIR("/usr/local/lib32")
  180. SEARCH_DIR("/lib32")
  181. SEARCH_DIR("/usr/lib32")
  182. SEARCH_DIR("/usr/i686-pc-linux-gnu/lib")
  183. SEARCH_DIR("/usr/local/lib")
  184. SEARCH_DIR("/lib")
  185. SEARCH_DIR("/usr/lib");</computeroutput></screen>
  186. <para>A 64-bit system may see a few different directories. For example, here
  187. is the output from an x86_64 machine:</para>
  188. <screen><computeroutput>SEARCH_DIR("/usr/x86_64-unknown-linux-gnu/lib64")
  189. SEARCH_DIR("/usr/local/lib64")
  190. SEARCH_DIR("/lib64")
  191. SEARCH_DIR("/usr/lib64")
  192. SEARCH_DIR("/usr/x86_64-unknown-linux-gnu/lib")
  193. SEARCH_DIR("/usr/local/lib")
  194. SEARCH_DIR("/lib")
  195. SEARCH_DIR("/usr/lib");</computeroutput></screen>
  196. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  197. href="adjusting.xml"
  198. xpointer="xpointer(//*[@os='l'])"/>
  199. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  200. href="adjusting.xml"
  201. xpointer="xpointer(//*[@os='m'])"/>
  202. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  203. href="adjusting.xml"
  204. xpointer="xpointer(//*[@os='n'])"/>
  205. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  206. href="adjusting.xml"
  207. xpointer="xpointer(//*[@os='o'])"/>
  208. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  209. href="adjusting.xml"
  210. xpointer="xpointer(//*[@os='p'])"/>
  211. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  212. href="adjusting.xml"
  213. xpointer="xpointer(//*[@os='q'])"/>
  214. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  215. href="adjusting.xml"
  216. xpointer="xpointer(//*[@os='r'])"/>
  217. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  218. href="adjusting.xml"
  219. xpointer="xpointer(//*[@os='s'])"/>
  220. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  221. href="adjusting.xml"
  222. xpointer="xpointer(//*[@os='t'])"/>
  223. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  224. href="adjusting.xml"
  225. xpointer="xpointer(//*[@os='u'])"/>
  226. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  227. href="adjusting.xml"
  228. xpointer="xpointer(//*[@os='v'])"/>
  229. <para>Finally, move a misplaced file:</para>
  230. <screen><userinput remap="install">mkdir -pv /usr/share/gdb/auto-load/usr/lib
  231. mv -v /usr/lib/*gdb.py /usr/share/gdb/auto-load/usr/lib</userinput></screen>
  232. </sect2>
  233. <sect2 id="contents-gcc" role="content">
  234. <title>Contents of GCC</title>
  235. <segmentedlist>
  236. <segtitle>Installed programs</segtitle>
  237. <segtitle>Installed libraries</segtitle>
  238. <segtitle>Installed directories</segtitle>
  239. <seglistitem>
  240. <seg>c++, cc (link to gcc), cpp, g++, gcc,
  241. gcc-ar, gcc-nm, gcc-ranlib, and gcov</seg>
  242. <seg>libasan.{a,so}, libatomic.{a,so}, libgcc.a, libgcc_eh.a,
  243. libgcc_s.so, libgcov.a, libgomp.{a,so}, libiberty.a, libitm.{a,so},
  244. liblto_plugin.so,
  245. libquadmath.{a,so}, libssp.{a,so},
  246. libssp_nonshared.a, libstdc++.{a,so}, libsupc++.a and libtsan.{a,so}</seg>
  247. <seg>/usr/include/c++, /usr/lib/gcc, /usr/libexec/gcc,
  248. /usr/share/gcc-&gcc-version;</seg>
  249. </seglistitem>
  250. </segmentedlist>
  251. <variablelist>
  252. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  253. <?dbfo list-presentation="list"?>
  254. <?dbhtml list-presentation="table"?>
  255. <varlistentry id="c">
  256. <term><command>c++</command></term>
  257. <listitem>
  258. <para>The C++ compiler</para>
  259. <indexterm zone="ch-system-gcc c">
  260. <primary sortas="b-c++">c++</primary>
  261. </indexterm>
  262. </listitem>
  263. </varlistentry>
  264. <varlistentry id="cc">
  265. <term><command>cc</command></term>
  266. <listitem>
  267. <para>The C compiler</para>
  268. <indexterm zone="ch-system-gcc cc">
  269. <primary sortas="b-cc">cc</primary>
  270. </indexterm>
  271. </listitem>
  272. </varlistentry>
  273. <varlistentry id="cpp">
  274. <term><command>cpp</command></term>
  275. <listitem>
  276. <para>The C preprocessor; it is used by the compiler to expand the
  277. #include, #define, and similar statements in the source files</para>
  278. <indexterm zone="ch-system-gcc cpp">
  279. <primary sortas="b-cpp">cpp</primary>
  280. </indexterm>
  281. </listitem>
  282. </varlistentry>
  283. <varlistentry id="g">
  284. <term><command>g++</command></term>
  285. <listitem>
  286. <para>The C++ compiler</para>
  287. <indexterm zone="ch-system-gcc g">
  288. <primary sortas="b-g++">g++</primary>
  289. </indexterm>
  290. </listitem>
  291. </varlistentry>
  292. <varlistentry id="gcc">
  293. <term><command>gcc</command></term>
  294. <listitem>
  295. <para>The C compiler</para>
  296. <indexterm zone="ch-system-gcc gcc">
  297. <primary sortas="b-gcc">gcc</primary>
  298. </indexterm>
  299. </listitem>
  300. </varlistentry>
  301. <varlistentry id="gcc-ar">
  302. <term><command>gcc-ar</command></term>
  303. <listitem>
  304. <para>A wrapper around <command>ar</command> that adds a
  305. plugin to the command line. This program is only used
  306. to add "link time optization" and is not useful with the
  307. default build options.</para>
  308. <indexterm zone="ch-system-gcc gcc-ar">
  309. <primary sortas="b-gcc-ar">gc-ar</primary>
  310. </indexterm>
  311. </listitem>
  312. </varlistentry>
  313. <varlistentry id="gcc-nm">
  314. <term><command>gcc-nm</command></term>
  315. <listitem>
  316. <para>A wrapper around <command>nm</command> that adds a
  317. plugin to the command line. This program is only used
  318. to add "link time optization" and is not useful with the
  319. default build options.</para>
  320. <indexterm zone="ch-system-gcc gcc-nm">
  321. <primary sortas="b-gcc-nm">gc-nm</primary>
  322. </indexterm>
  323. </listitem>
  324. </varlistentry>
  325. <varlistentry id="gcc-ranlib">
  326. <term><command>gcc-ranlib</command></term>
  327. <listitem>
  328. <para>A wrapper around <command>ranlib</command> that adds a
  329. plugin to the command line. This program is only used
  330. to add "link time optization" and is not useful with the
  331. default build options.</para>
  332. <indexterm zone="ch-system-gcc gcc-ranlib">
  333. <primary sortas="b-gcc-ranlib">gc-ranlib</primary>
  334. </indexterm>
  335. </listitem>
  336. </varlistentry>
  337. <varlistentry id="gcov">
  338. <term><command>gcov</command></term>
  339. <listitem>
  340. <para>A coverage testing tool; it is used to analyze programs to
  341. determine where optimizations will have the most effect</para>
  342. <indexterm zone="ch-system-gcc gcov">
  343. <primary sortas="b-gcov">gcov</primary>
  344. </indexterm>
  345. </listitem>
  346. </varlistentry>
  347. <varlistentry id="libasan">
  348. <term><command>libasan</command></term>
  349. <listitem>
  350. <para>The Address Sanitizer runtime library</para>
  351. <indexterm zone="ch-system-gcc libasan">
  352. <primary sortas="b-libasan">libasan</primary>
  353. </indexterm>
  354. </listitem>
  355. </varlistentry>
  356. <varlistentry id="libgcc">
  357. <term><filename class="libraryfile">libgcc</filename></term>
  358. <listitem>
  359. <para>Contains run-time support for <command>gcc</command></para>
  360. <indexterm zone="ch-system-gcc libgcc">
  361. <primary sortas="c-libgcc*">libgcc*</primary>
  362. </indexterm>
  363. </listitem>
  364. </varlistentry>
  365. <varlistentry id="libgcov">
  366. <term><filename class="libraryfile">libgcov</filename></term>
  367. <listitem>
  368. <para>This library is linked in to a program when GCC is instructed
  369. to enable profiling</para>
  370. <indexterm zone="ch-system-gcc libgcov">
  371. <primary sortas="c-libgcov">libgcov</primary>
  372. </indexterm>
  373. </listitem>
  374. </varlistentry>
  375. <varlistentry id="libgomp">
  376. <term><filename class="libraryfile">libgomp</filename></term>
  377. <listitem>
  378. <para>GNU implementation of the OpenMP API for multi-platform
  379. shared-memory parallel programming in C/C++ and Fortran</para>
  380. <indexterm zone="ch-system-gcc libgomp">
  381. <primary sortas="c-libgomp">libgomp</primary>
  382. </indexterm>
  383. </listitem>
  384. </varlistentry>
  385. <varlistentry id="libiberty">
  386. <term><filename class="libraryfile">libiberty</filename></term>
  387. <listitem>
  388. <para>Contains routines used by various GNU programs, including
  389. <command>getopt</command>, <command>obstack</command>,
  390. <command>strerror</command>, <command>strtol</command>, and
  391. <command>strtoul</command></para>
  392. <indexterm zone="ch-system-gcc libiberty">
  393. <primary sortas="c-libiberty">libiberty</primary>
  394. </indexterm>
  395. </listitem>
  396. </varlistentry>
  397. <varlistentry id="liblto_plugin">
  398. <term><filename class="libraryfile">liblto_plugin</filename></term>
  399. <listitem>
  400. <para>GCC's Link Time Optimization (LTO) plugin allows GCC to perform
  401. optimizations across compilation units.</para>
  402. <indexterm zone="ch-system-gcc liblto_plugin">
  403. <primary sortas="c-liblto_plugin*">liblto_plugin*</primary>
  404. </indexterm>
  405. </listitem>
  406. </varlistentry>
  407. <!--
  408. <varlistentry id="libmudflap">
  409. <term><filename class="libraryfile">libmudflap</filename></term>
  410. <listitem>
  411. <para>Contains routines that support GCC's bounds checking
  412. functionality</para>
  413. <indexterm zone="ch-system-gcc libmudflap">
  414. <primary sortas="c-libmudflap*">libmudflap*</primary>
  415. </indexterm>
  416. </listitem>
  417. </varlistentry>
  418. -->
  419. <varlistentry id="libquadmath">
  420. <term><filename class="libraryfile">libquadmath</filename></term>
  421. <listitem>
  422. <para>GCC Quad Precision Math Library API</para>
  423. <indexterm zone="ch-system-gcc libquadmath">
  424. <primary sortas="c-libquadmath*">libquadmath*</primary>
  425. </indexterm>
  426. </listitem>
  427. </varlistentry>
  428. <varlistentry id="libssp">
  429. <term><filename class="libraryfile">libssp</filename></term>
  430. <listitem>
  431. <para>Contains routines supporting GCC's stack-smashing protection
  432. functionality</para>
  433. <indexterm zone="ch-system-gcc libssp">
  434. <primary sortas="c-libssp*">libssp*</primary>
  435. </indexterm>
  436. </listitem>
  437. </varlistentry>
  438. <varlistentry id="libstdc">
  439. <term><filename class="libraryfile">libstdc++</filename></term>
  440. <listitem>
  441. <para>The standard C++ library</para>
  442. <indexterm zone="ch-system-gcc libstdc">
  443. <primary sortas="c-libstdc++">libstdc++</primary>
  444. </indexterm>
  445. </listitem>
  446. </varlistentry>
  447. <varlistentry id="libsupc">
  448. <term><filename class="libraryfile">libsupc++</filename></term>
  449. <listitem>
  450. <para>Provides supporting routines for the C++ programming
  451. language</para>
  452. <indexterm zone="ch-system-gcc libsupc">
  453. <primary sortas="c-libsupc++">libsupc++</primary>
  454. </indexterm>
  455. </listitem>
  456. </varlistentry>
  457. <varlistentry id="libtsan">
  458. <term><filename class="libraryfile">libtsan</filename></term>
  459. <listitem>
  460. <para>The Thread Sanitizer runtime library</para>
  461. <indexterm zone="ch-system-gcc libtsan">
  462. <primary sortas="c-libtsan">libtsan</primary>
  463. </indexterm>
  464. </listitem>
  465. </varlistentry>
  466. </variablelist>
  467. </sect2>
  468. </sect1>