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