[H-GEN] GCC/G++ MANUAL
Craig Eldershaw
ce at comlab.ox.ac.uk
Mon Aug 10 05:33:49 EDT 1998
>Does anyone know of a reference site for a GCC/G++ manual in some
>continuous (contiguous?) file (eg, txt format or pdf). The only
>references I have are for multi-level menu html files. This makes it
>pretty difficult to print.
Grab the source for gcc
(prep.ai.your.mirror/pub/gnu/gcc-your.version.tar.gz or
sunsite.your.mirror/pub/Linux/devel/lang/c/gcc-your-version.tar.gz)
and unpack it. Then move all the *.texi files into another directory
somewhere and tex it. Eg.
cd gcc-1.2.3
mkdir doc
mv *.texi doc
cd doc
tex gcc.texi
texindex gcc.??
tex gcc.texi
tex gcc.texi
This assumes you have tex installed.
All this gives you a file gcc.dvi. To get gcc.ps, run
dvips -o gcc.ps gcc.dvi
HTH...
Cheers,
Craig.
More information about the General
mailing list