source: chapter08/gcc.xml@ c18558c

xry111/arm64 xry111/arm64-12.0
Last change on this file since c18558c was 9334a3f, checked in by Xi Ruoyao <xry111@…>, 20 months ago

arm64: adapt GCC lib64 -> lib quirk for aarch64

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