source: general/prog/gcc.xml@ 800c9c3

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 800c9c3 was 800c9c3, checked in by Randy McMurchy <randy@…>, 19 years ago

Updated to GCC-4.0.1

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@5057 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 26.6 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY gcc-download-http "http://ftp.gnu.org/gnu/gcc/gcc-&gcc-version;/gcc-&gcc-version;.tar.bz2">
8 <!ENTITY gcc-download-ftp "ftp://mirrors.rcn.net/pub/sourceware/gcc/releases/gcc-&gcc-version;/gcc-&gcc-version;.tar.bz2">
9 <!ENTITY gcc-md5sum "947416e825a877a0d69489be1be43be1">
10 <!ENTITY gcc-size "31.7 MB">
11 <!ENTITY gcc-buildsize "2.2 GB">
12 <!ENTITY gcc-time "67 SBU (build, test and install all compilers)">
13
14 <!ENTITY gnat-download-http "http://anduin.linuxfromscratch.org/sources/BLFS/SVN/F-H/gnat-3.15p-i686-pc-redhat71-gnu-bin.tar.bz2">
15 <!ENTITY gnat-download-ftp "ftp://anduin.linuxfromscratch.org/BLFS/SVN/F-H/gnat-3.15p-i686-pc-redhat71-gnu-bin.tar.bz2">
16 <!ENTITY gnat-md5sum "c9aad2da908a40e876c24fc85f248b51">
17 <!ENTITY gnat-size "11.6 MB">
18 <!ENTITY gnat-buildsize "97.7 MB">
19 <!ENTITY gnat-time "less than 0.1 SBU">
20]>
21
22<sect1 id="gcc" xreflabel="GCC-&gcc-version;">
23 <?dbhtml filename="gcc.html" ?>
24
25 <sect1info>
26 <othername>$LastChangedBy$</othername>
27 <date>$Date$</date>
28 </sect1info>
29
30 <title>GCC-&gcc-version;</title>
31
32 <indexterm zone="gcc">
33 <primary sortas="a-gcc-4-0">GCC-&gcc-version;</primary>
34 </indexterm>
35
36 <sect2 role="package">
37 <title>Introduction to GCC</title>
38
39 <para>The <application>GCC</application> package contains GNU compilers.
40 This package is useful for compiling programs written in C, C++, Fortran,
41 Java, Objective C and Ada. Also included is GNU Treelang. Treelang is a
42 sample language, useful only to help people understand how to implement a
43 new language front end to GCC. It is not a useful language in itself other
44 than as an example or basis for building a new language. Therefore only
45 language developers are likely to have an interest in it.</para>
46
47 <note>
48 <para>The Fortran compiler included with the
49 <application>GCC</application>-4.x package now aims to be conformant
50 with the Fortran 95 standard, not the Fortran 77 standard as all previous
51 versions of <application>GCC</application> have been. Please note the
52 following paragraph copied directly from the
53 <application>GCC</application>-&gcc-version; <command>gfortran</command>
54 man page.</para>
55
56 <para><quote>Gfortran is not yet a fully conformant Fortran 95 compiler.
57 It can generate code for most constructs and expressions, but work
58 remains to be done. In particular, there are known deficiencies with
59 ENTRY, NAMELIST, and sophisticated use of MODULES, POINTERS and DERIVED
60 TYPES. For those whose Fortran codes conform to either the Fortran 77
61 standard or the GNU Fortran 77 language, we recommend to use
62 <command>g77</command> from <application>GCC</application>
63 3.4.</quote></para>
64 </note>
65
66 <bridgehead renderas="sect3">Package Information</bridgehead>
67 <itemizedlist spacing="compact">
68 <listitem>
69 <para>Download (HTTP): <ulink url="&gcc-download-http;"/></para>
70 </listitem>
71 <listitem>
72 <para>Download (FTP): <ulink url="&gcc-download-ftp;"/></para>
73 </listitem>
74 <listitem>
75 <para>Download MD5 sum: &gcc-md5sum;</para>
76 </listitem>
77 <listitem>
78 <para>Download size: &gcc-size;</para>
79 </listitem>
80 <listitem>
81 <para>Estimated disk space required: &gcc-buildsize;</para>
82 </listitem>
83 <listitem>
84 <para>Estimated build time: &gcc-time;</para>
85 </listitem>
86 </itemizedlist>
87
88<!--
89 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
90 <itemizedlist spacing='compact'>
91 <listitem>
92 <para>Required patch: <ulink
93 url="&patch-root;/gcc-&gcc-version;-no_fixincludes-1.patch"/></para>
94 </listitem>
95 <listitem>
96 <para>Required patch: <ulink
97 url="&patch-root;/gcc-&gcc-version;-linkonce-1.patch"/></para>
98 </listitem>
99 </itemizedlist>
100-->
101
102 <bridgehead renderas="sect3">GCC Dependencies</bridgehead>
103
104 <bridgehead renderas="sect4">Recommended</bridgehead>
105 <para><xref linkend="dejagnu"/></para>
106
107 <bridgehead renderas="sect4">Optional (Required to Build the Fortran
108 Compiler)</bridgehead>
109 <para><xref linkend="gmp"/> and
110 <ulink url="http://www.mpfr.org/">MPFR</ulink></para>
111
112 <note>
113 <para>If you plan to compile Ada, you will need to install
114 <application>GNAT</application> temporarily to satisfy the circular
115 dependency when you recompile <application>GCC</application>
116 to include Ada.</para>
117 </note>
118
119 <bridgehead renderas="sect3">GNAT-3.15 Package Information</bridgehead>
120 <itemizedlist spacing="compact">
121 <listitem>
122 <para>Download (HTTP): <ulink url="&gnat-download-http;"/></para>
123 </listitem>
124 <listitem>
125 <para>Download (FTP): <ulink url="&gnat-download-ftp;"/></para>
126 </listitem>
127 <listitem>
128 <para>Download MD5 sum: &gnat-md5sum;</para>
129 </listitem>
130 <listitem>
131 <para>Download size: &gnat-size;</para>
132 </listitem>
133 <listitem>
134 <para>Estimated disk space required: &gnat-buildsize;</para>
135 </listitem>
136 <listitem>
137 <para>Estimated build time: &gnat-time;</para>
138 </listitem>
139 </itemizedlist>
140
141 <bridgehead renderas="sect3">GNAT Dependencies</bridgehead>
142
143 <bridgehead renderas="sect4">Required</bridgehead>
144 <para><xref linkend="tcsh"/></para>
145
146 </sect2>
147
148 <sect2 role="installation">
149 <title>Installation of GNAT</title>
150
151 <para>Install <application>GNAT</application> by running
152 the following commands:</para>
153
154<screen><userinput>./doconfig</userinput></screen>
155
156 <para>The above script will ask you how and where you would like to install
157 <application>GNAT</application>. To avoid conflicts with the system
158 <command>gcc</command>, the package will be installed in a separate
159 directory that can later be removed from the system.</para>
160
161 <para>In response to the questions asked by the <command>doconfig</command>
162 script, enter <userinput>3</userinput> in response to the first question
163 and <userinput>/opt/gnat</userinput> in response to the second
164 question.</para>
165
166 <para>To finish the installation, run the following command as the
167 <systemitem class="username">root</systemitem> user:</para>
168
169<screen role="root"><userinput>./doinstall</userinput></screen>
170
171 <para>The <application>GNAT</application> compiler can be
172 invoked by executing the <command>gcc</command> binary installed
173 by the above script.</para>
174
175 <para>You may now remove the <application>GNAT</application>
176 source directory:</para>
177
178<screen><userinput>cd .. &amp;&amp;
179rm -rf gnat-3.15p-i686-pc-linux-gnu-bin</userinput></screen>
180
181 <para>Prepare to compile <application>GCC</application> by placing the
182 <application>GNAT</application> version of <command>gcc</command> at the
183 beginning of the <envar>PATH</envar> variable by using the following
184 commands:</para>
185
186<screen><userinput>PATH_HOLD=$PATH &amp;&amp;
187export PATH=/opt/gnat/bin:$PATH</userinput></screen>
188
189 </sect2>
190
191 <sect2 role="installation">
192 <title>Installation of GCC</title>
193
194 <para>Install <application>GCC</application> by running the
195 following commands:</para>
196
197 <important>
198 <para>The installation process may overwrite your existing
199 <application>GCC</application> <command>gcc</command> and
200 <command>c++</command> compilers and libraries. It is highly recommended
201 that you have the <application>Tcl</application>,
202 <application>Expect</application> and <application>DejaGnu</application>
203 packages installed before beginning the build so you can run the full
204 suite of tests.</para>
205
206 <para>Do not continue with the <command>make install</command> command
207 until you're confident the build was successful. You can compare your
208 test results with those found at
209 <ulink url="http://gcc.gnu.org/ml/gcc-testresults/"/>. There's also an
210 i686 platform test result produced by an LFS-SVN-20050831 system at
211 <ulink url="http://linuxfromscratch.org/~randy/gcc401_test.txt"/>. You
212 may also want to refer to the information found in the
213 <application>GCC</application>-Pass 2 section of Chapter 5 in the LFS
214 book (<ulink url="&lfs-root;/chapter05/gcc-pass2.html"/>). Bottom line
215 is that this version of <application>GCC</application> should exhibit
216 no errors other than six errors in the
217 <filename class='libraryfile'>libmudflap</filename> tests.</para>
218 </important>
219
220<screen><userinput>sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in &amp;&amp;
221mkdir ../gcc-build &amp;&amp;
222cd ../gcc-build &amp;&amp;
223../gcc-&gcc-version;/configure \
224 --prefix=/usr \
225 --libexecdir=/usr/lib \
226 --enable-shared \
227 --enable-threads=posix \
228 --enable-__cxa_atexit \
229 --enable-clocale=gnu \
230 --enable-languages=c,c++,objc,f95,ada,java,treelang &amp;&amp;
231make bootstrap &amp;&amp;
232make -k check &amp;&amp;
233../gcc-&gcc-version;/contrib/test_summary</userinput></screen>
234
235 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
236
237<screen role="root"><userinput>make install &amp;&amp;
238ln -v -sf ../usr/bin/cpp /lib &amp;&amp;
239ln -v -sf gcc /usr/bin/cc &amp;&amp;
240chown -v -R root:root \
241 /usr/lib/gcc/i686-pc-linux-gnu/&gcc-version;/include &amp;&amp;
242chown -v -R root:root \
243 /usr/lib/gcc/i686-pc-linux-gnu/&gcc-version;/ada{lib,include}</userinput></screen>
244
245 <para>The <filename class='libraryfile'>libffi</filename> interface header
246 is installed in a location where other packages will not be able to find
247 it. If you included Java as one of the installed languages, create a
248 symbolic link in <filename class='directory'>/usr/include</filename> to
249 remedy this:</para>
250
251<screen role="root"><userinput>ln -v -sf `find /usr/lib/gcc -name ffitarget.h` /usr/include</userinput></screen>
252
253 <para>As the <systemitem class="username">root</systemitem> user, remove the
254 <application>GNAT</application> installation:</para>
255
256<screen role="root"><userinput>rm -rf /opt/gnat</userinput></screen>
257
258 <para>Now, as the unprivileged user, restore your old
259 <envar>PATH</envar>:</para>
260
261<screen><userinput>export PATH=$PATH_HOLD &amp;&amp;
262unset PATH_HOLD</userinput></screen>
263
264<!--
265 <note>
266 <para>Some of the <application>Java</application> programs installed by
267 the <application>GCC</application> package conflict (have the same names)
268 with programs from the <xref linkend="jdk"/> package. If you installed
269 the <application>Java</application> language from the
270 <application>GCC</application> package but you wish to use the programs
271 from the <application>JDK</application> as the defaults, ensure
272 <filename class='directory'>$JAVA_HOME/bin</filename> is listed before
273 <filename class='directory'>/usr/bin</filename> in your
274 <envar>PATH</envar> variable.</para>
275 </note>
276-->
277
278 </sect2>
279
280 <sect2 role="commands">
281 <title>Command Explanations</title>
282
283 <para><command>sed -i 's/install_to_$(INSTALL_DEST) //'
284 libiberty/Makefile.in</command>: This command suppresses the installation
285 of <filename class='libraryfile'>libiberty.a</filename> as the version
286 provided by <application>Binutils</application> is used instead.</para>
287
288 <para><command>mkdir ../gcc-build; cd ../gcc-build</command>: The
289 <application>GCC</application> documentation recommends
290 building the package in a dedicated build directory.</para>
291
292 <para><parameter>--enable-shared --enable-threads=posix
293 --enable-__cxa_atexit</parameter>: These parameters are required to build
294 the <application>C++</application> libraries to published standards.</para>
295
296 <para><parameter>--enable-clocale=gnu</parameter>: This command is a
297 failsafe for incomplete locale data.</para>
298
299 <para>
300 <parameter>--enable-languages=c,c++,objc,f95,ada,java,treelang</parameter>:
301 This command identifies which languages to build. You may modify this command
302 to remove undesired languages.</para>
303
304<!--
305 <para><command>make -C gcc gnatlib-shared</command>: This command builds the
306 Ada shared and static libraries. Skip this step if you have not enabled
307 Ada as one of the languages.</para>
308
309 <para><command>make -C gcc gnattools</command>: This command builds the
310 Ada development tools and binaries. Skip this step if you have not enabled
311 Ada as one of the languages.</para>
312-->
313
314 <para><command>make -k check</command>: This command runs the test suite
315 without stopping if any errors are encountered.</para>
316
317 <para><command>../gcc-&gcc-version;/contrib/test_summary</command>: This
318 command will produce a summary of the test suite results. You can append
319 <command>| grep -A7 Summ</command> to the command to produce an even more
320 condensed version of the summary. You may also wish to redirect the output
321 to a file for review and comparison later on.</para>
322
323 <para><command>ln -v -sf ../usr/bin/cpp /lib</command>: This command
324 creates a link to the C PreProcessor as some packages expect it to be
325 installed in the <filename class='directory'>/lib</filename>
326 directory.</para>
327
328 <para><command>ln -v -sf gcc /usr/bin/cc</command>: This link is created as
329 some packages refer to the C compiler using an alternate name.</para>
330
331 <para><command>chown -v -R root:root
332 /usr/lib/gcc/i686-pc-linux-gnu/...</command>:
333 If the package is built by a user other than root, the ownership of the
334 installed <filename class='directory'>include</filename> and
335 <filename class='directory'>adalib</filename> directories (and their
336 contents) will be incorrect. These commands change the ownership to the
337 <systemitem class="username">root</systemitem> user and group . Omit the
338 command changing the Ada directories if you did not include Ada as one of
339 the installed languages.</para>
340
341 </sect2>
342
343 <sect2 role="content">
344 <title>Contents</title>
345
346 <segmentedlist>
347 <segtitle>Installed Programs</segtitle>
348 <segtitle>Installed Libraries</segtitle>
349 <segtitle>Installed Directories</segtitle>
350
351 <seglistitem>
352 <seg>addr2name.awk, fastjar, gcj, gcj-dbtool,gcjh, gfortran, gij,
353 gjnih, gnat, gnatbind, gnatbl, gnatchop, gnatclean, gnatfind, gnatkr,
354 gnatlink, gnatls, gnatmake, gnatname, gnatprep, gnatxref, gprmake,
355 grepjar, grmic, grmiregistry, gtreelang, jcf-dump, jv-convert, jv-scan
356 and architecture specific names for gcj and gcjh</seg>
357 <seg>libffi.[so,a], libgcj.[so,a], libgfortran.[so,a],
358 libgfortranbegin.a, libgij.[so,a], libobjc.[so,a] and numerous other
359 run-time libraries and executables in /usr/lib/gcc</seg>
360 <seg>/usr/include/c++/4.0.1/gcj,
361 /usr/include/c++/4.0.1/gnu,
362 /usr/include/c++/4.0.1/java,
363 /usr/include/c++/4.0.1/javax,
364 /usr/include/c++/4.0.1/org,
365 /usr/lib/gcc/i686-pc-linux-gnu/4.0.1/adainclude,
366 /usr/lib/gcc/i686-pc-linux-gnu/4.0.1/adalib,
367 /usr/lib/gcj-4.0.1,
368 /usr/lib/security
369 and /usr/share/java</seg>
370 </seglistitem>
371 </segmentedlist>
372
373 <para>Some program and library names and descriptions are not listed here,
374 but can be found at
375 <ulink url="&lfs-root;/chapter06/gcc.html#contents-gcc"/> as they were
376 initially installed during the building of LFS.</para>
377
378 <variablelist>
379 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
380 <?dbfo list-presentation="list"?>
381 <?dbhtml list-presentation="table"?>
382
383 <varlistentry id="addr2name.awk">
384 <term><command>addr2name.awk</command></term>
385 <listitem>
386 <para> emulates some of the functionality of addr2line.</para>
387 <indexterm zone="gcc addr2name.awk">
388 <primary sortas="b-addr2name.awk">addr2name.awk</primary>
389 </indexterm>
390 </listitem>
391 </varlistentry>
392
393 <varlistentry id="fastjar-gcc">
394 <term><command>fastjar</command></term>
395 <listitem>
396 <para>is an archive tool for <application>Java</application> archives.</para>
397 <indexterm zone="gcc fastjar-gcc">
398 <primary sortas="b-fastjar">fastjar</primary>
399 </indexterm>
400 </listitem>
401 </varlistentry>
402
403 <varlistentry id="gcj">
404 <term><command>gcj</command></term>
405 <listitem>
406 <para>is an ahead-of-time compiler for the
407 <application>Java</application> language.</para>
408 <indexterm zone="gcc gcj">
409 <primary sortas="b-gcj">gcj</primary>
410 </indexterm>
411 </listitem>
412 </varlistentry>
413
414 <varlistentry id="gcj-dbtool">
415 <term><command>gcj-dbtool</command></term>
416 <listitem>
417 <para>is a tool for creating and manipulating class file mapping
418 databases.</para>
419 <indexterm zone="gcc gcj-dbtool">
420 <primary sortas="b-gcj-dbtool">gcj-dbtool</primary>
421 </indexterm>
422 </listitem>
423 </varlistentry>
424
425 <varlistentry id="gcjh">
426 <term><command>gcjh</command></term>
427 <listitem>
428 <para>generates header files from <application>Java</application>
429 class files.</para>
430 <indexterm zone="gcc gcjh">
431 <primary sortas="b-gcjh">gcjh</primary>
432 </indexterm>
433 </listitem>
434 </varlistentry>
435
436 <varlistentry id="gfortran">
437 <term><command>gfortran</command></term>
438 <listitem>
439 <para>is the <application>Fortran</application> compiler invoked by
440 <command>gcc</command>.</para>
441 <indexterm zone="gcc gfortran">
442 <primary sortas="b-gfortran">gfortran</primary>
443 </indexterm>
444 </listitem>
445 </varlistentry>
446
447 <varlistentry id="gij">
448 <term><command>gij</command></term>
449 <listitem>
450 <para>is the GNU interpreter for <application>Java</application>
451 bytecode.</para>
452 <indexterm zone="gcc gij">
453 <primary sortas="b-gij">gij</primary>
454 </indexterm>
455 </listitem>
456 </varlistentry>
457
458 <varlistentry id="gjnih">
459 <term><command>gjnij</command></term>
460 <listitem>
461 <para>is used to generate JNI header files from class files. Running
462 it is equivalent to running <command>gcjh -jni</command>.</para>
463 <indexterm zone="gcc gjnih">
464 <primary sortas="b-gjnih">gjnih</primary>
465 </indexterm>
466 </listitem>
467 </varlistentry>
468
469 <varlistentry id="gnat">
470 <term><command>gnat</command></term>
471 <listitem>
472 <para>is the <application>Ada</application> compiler invoked by
473 <command>gcc</command>.</para>
474 <indexterm zone="gcc gnat">
475 <primary sortas="b-gnat">gnat</primary>
476 </indexterm>
477 </listitem>
478 </varlistentry>
479
480 <varlistentry id="gnatbind">
481 <term><command>gnatbind</command></term>
482 <listitem>
483 <para>is used to bind compiled objects.</para>
484 <indexterm zone="gcc gnatbind">
485 <primary sortas="b-gnatbind">gnatbind</primary>
486 </indexterm>
487 </listitem>
488 </varlistentry>
489
490 <varlistentry id="gnatbl">
491 <term><command>gnatbl</command></term>
492 <listitem>
493 <para>is the <application>Ada</application> linker.</para>
494 <indexterm zone="gcc gnatbl">
495 <primary sortas="b-gnatbl">gnatbl</primary>
496 </indexterm>
497 </listitem>
498 </varlistentry>
499
500 <varlistentry id="gnatchop">
501 <term><command>gnatchop</command></term>
502 <listitem>
503 <para>is useful for renaming files to meet the standard
504 <application>Ada</application> default file naming conventions.</para>
505 <indexterm zone="gcc gnatchop">
506 <primary sortas="b-gnatchop">gnatchop</primary>
507 </indexterm>
508 </listitem>
509 </varlistentry>
510
511 <varlistentry id="gnatclean">
512 <term><command>gnatclean</command></term>
513 <listitem>
514 <para>is used to remove files associated with a
515 <application>GNAT</application> project.</para>
516 <indexterm zone="gcc gnatclean">
517 <primary sortas="b-gnatclean">gnatclean</primary>
518 </indexterm>
519 </listitem>
520 </varlistentry>
521
522 <varlistentry id="gnatfind">
523 <term><command>gnatfind</command></term>
524 <listitem>
525 <para> is the <application>GNAT</application> definition/use finder.</para>
526 <indexterm zone="gcc gnatfind">
527 <primary sortas="b-gnatfind">gnatfind</primary>
528 </indexterm>
529 </listitem>
530 </varlistentry>
531
532 <varlistentry id="gnatkr">
533 <term><command>gnatkr</command></term>
534 <listitem>
535 <para>is used to determine the crunched name for a given file, when
536 crunched to a specified maximum length.</para>
537 <indexterm zone="gcc gnatkr">
538 <primary sortas="b-gnatkr">gnatkr</primary>
539 </indexterm>
540 </listitem>
541 </varlistentry>
542
543 <varlistentry id="gnatlink">
544 <term><command>gnatlink</command></term>
545 <listitem>
546 <para>is used to link programs and build an executable file.</para>
547 <indexterm zone="gcc gnatlink">
548 <primary sortas="b-gnatlink">gnatlink</primary>
549 </indexterm>
550 </listitem>
551 </varlistentry>
552
553 <varlistentry id="gnatls">
554 <term><command>gnatls</command></term>
555 <listitem>
556 <para>is the compiled unit browser.</para>
557 <indexterm zone="gcc gnatls">
558 <primary sortas="b-gnatls">gnatls</primary>
559 </indexterm>
560 </listitem>
561 </varlistentry>
562
563 <varlistentry id="gnatmake">
564 <term><command>gnatmake</command></term>
565 <listitem>
566 <para>is an automatic <command>make</command> facility.</para>
567 <indexterm zone="gcc gnatmake">
568 <primary sortas="b-gnatmake">gnatmake</primary>
569 </indexterm>
570 </listitem>
571 </varlistentry>
572
573 <varlistentry id="gnatname">
574 <term><command>gnatname</command></term>
575 <listitem>
576 <para>will list the files associated with a
577 <application>GNAT</application> project.</para>
578 <indexterm zone="gcc gnatname">
579 <primary sortas="b-gnatname">gnatname</primary>
580 </indexterm>
581 </listitem>
582 </varlistentry>
583
584 <varlistentry id="gnatprep">
585 <term><command>gnatprep</command></term>
586 <listitem>
587 <para>is the <application>GNAT</application> external preprocessor.</para>
588 <indexterm zone="gcc gnatprep">
589 <primary sortas="b-gnatprep">gnatprep</primary>
590 </indexterm>
591 </listitem>
592 </varlistentry>
593
594 <varlistentry id="gnatxref">
595 <term><command>gnatxref</command></term>
596 <listitem>
597 <para>is the <application>GNAT</application> cross-referencer.</para>
598 <indexterm zone="gcc gnatxref">
599 <primary sortas="b-gnatxref">gnatxref</primary>
600 </indexterm>
601 </listitem>
602 </varlistentry>
603
604 <varlistentry id="gprmake">
605 <term><command>gprmake</command></term>
606 <listitem>
607 <para>is a tool used to create <filename>Makefile</filename>s that
608 support compilation by multiple languages.</para>
609 <indexterm zone="gcc gprmake">
610 <primary sortas="b-gprmake">gprmake</primary>
611 </indexterm>
612 </listitem>
613 </varlistentry>
614
615 <varlistentry id="grepjar">
616 <term><command>grepjar</command></term>
617 <listitem>
618 <para>searches <filename>jar</filename> files for a pattern.</para>
619 <indexterm zone="gcc grepjar">
620 <primary sortas="b-grepjar">grepjar</primary>
621 </indexterm>
622 </listitem>
623 </varlistentry>
624
625 <varlistentry id="grmic-gcc">
626 <term><command>grmic</command></term>
627 <listitem>
628 <para>generates stubs for Remote Method Invocation.</para>
629 <indexterm zone="gcc grmic-gcc">
630 <primary sortas="b-grmic">grmic</primary>
631 </indexterm>
632 </listitem>
633 </varlistentry>
634
635 <varlistentry id="grmiregistry-gcc">
636 <term><command>grmiregistry</command></term>
637 <listitem>
638 <para> starts a remote object registry on the current host.</para>
639 <indexterm zone="gcc grmiregistry-gcc">
640 <primary sortas="b-grmiregistry">grmiregistry</primary>
641 </indexterm>
642 </listitem>
643 </varlistentry>
644
645 <varlistentry id="gtreelang">
646 <term><command>gtreelang</command></term>
647 <listitem>
648 <para>is largely a cut down version of C, designed to showcase the
649 features of the <application>GCC</application> code generation back
650 end. Only those features that are directly supported by the
651 <application>GCC</application> code generation back end are
652 implemented. Features are implemented in a manner which is easiest
653 and clearest to implement. Not all or even most code generation back
654 end features are implemented. The intention is to add features
655 incrementally until most features of the
656 <application>GCC</application> back end are implemented in
657 Treelang.</para>
658 <indexterm zone="gcc gtreelang">
659 <primary sortas="b-gtreelang">gtreelang</primary>
660 </indexterm>
661 </listitem>
662 </varlistentry>
663
664 <varlistentry id="jcf-dump">
665 <term><command>jcf-dump</command></term>
666 <listitem>
667 <para>prints information about <application>Java</application>
668 class files.</para>
669 <indexterm zone="gcc jcf-dump">
670 <primary sortas="b-jcf-dump">jcf-dump</primary>
671 </indexterm>
672 </listitem>
673 </varlistentry>
674
675 <varlistentry id="jv-convert">
676 <term><command>jv-convert</command></term>
677 <listitem>
678 <para>converts files from one encoding to another.</para>
679 <indexterm zone="gcc jv-convert">
680 <primary sortas="b-jv-convert">jv-convert</primary>
681 </indexterm>
682 </listitem>
683 </varlistentry>
684
685 <varlistentry id="jv-scan">
686 <term><command>jv-scan</command></term>
687 <listitem>
688 <para>prints information about <application>Java</application>
689 source files.</para>
690 <indexterm zone="gcc jv-scan">
691 <primary sortas="b-jv-scan">jv-scan</primary>
692 </indexterm>
693 </listitem>
694 </varlistentry>
695
696 </variablelist>
697
698 </sect2>
699
700</sect1>
Note: See TracBrowser for help on using the repository browser.