gcc.xml 20 KB

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