diff options
author | Timothy Bauscher <timothy@linuxfromscratch.org> | 2002-09-24 04:52:43 +0000 |
---|---|---|
committer | Timothy Bauscher <timothy@linuxfromscratch.org> | 2002-09-24 04:52:43 +0000 |
commit | 695ae0bc31b390e1a544b0bd2f613ed514731168 (patch) | |
tree | 325d247284a14ec2f45f24150665fdb9db4271ed /appendixa/gcc-desc.xml | |
parent | 4a7171007fe7374ca39694ade3b062d18a496caa (diff) |
Applied Bill's chapter 5 fixes patch.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2133 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'appendixa/gcc-desc.xml')
-rw-r--r-- | appendixa/gcc-desc.xml | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/appendixa/gcc-desc.xml b/appendixa/gcc-desc.xml index 04a59e522..f2408b4de 100644 --- a/appendixa/gcc-desc.xml +++ b/appendixa/gcc-desc.xml @@ -15,7 +15,7 @@ file is compiled into an object file, a linker will create an executable file from one or more of these compiler generated object files.</para></sect4> <sect4><title>c++, cc1plus, g++</title> -<para>These are the C++ compiler; the equivalent of cc and +<para>These are the C++ compiler, the equivalent of cc and gcc etc.</para></sect4> <sect4><title>c++filt</title> @@ -31,12 +31,10 @@ from clashing.</para></sect4> <para>collect2 assists with the compilation of constructors.</para></sect4> <sect4><title>cpp, cpp0</title> -<para>cpp pre-processes a source file, such as including -the contents of header files into the source file. It's a good idea to -not do this manually to save a lot of time. Someone just inserts a line -like #include <filename>. The preprocessor inserts the -contents of that file into the source file. That's one of the things a -preprocessor does.</para></sect4> +<para>cpp pre-processes a source file, such as including the contents of +header files into the source file. Simply add a line, such as #include +<filename>, to your source file. The preprocessor will insert the +contents of the included file into the source file.</para></sect4> <sect4><title>gccbug</title> <para>gccbug is a shell script which is used to simplify the creation of |