aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorNathanael Nerode <neroden@gcc.gnu.org>2003-05-18 15:52:25 +0000
committerNathanael Nerode <neroden@gcc.gnu.org>2003-05-18 15:52:25 +0000
commit7d4f6041f9bd0436dbc70aedc2186a1940897018 (patch)
tree7c8ee99cb86a9417df0efadbaf0fdffdd2e0911f /gcc
parent8b87bb9624085b39ceb1596aeeebdf6f297bea04 (diff)
downloadgcc-7d4f6041f9bd0436dbc70aedc2186a1940897018.zip
gcc-7d4f6041f9bd0436dbc70aedc2186a1940897018.tar.gz
gcc-7d4f6041f9bd0436dbc70aedc2186a1940897018.tar.bz2
collect2.texi: GNU CC -> GCC.
* doc/collect2.texi: GNU CC -> GCC. * doc/headerdirs.texi: GNU CC -> GCC. From-SVN: r66933
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/doc/collect2.texi2
-rw-r--r--gcc/doc/headerdirs.texi15
3 files changed, 13 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 54b2392..88d99c1 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2003-05-18 Nathanael Nerode <neroden@gcc.gnu.org>
+
+ * doc/collect2.texi: GNU CC -> GCC.
+ * doc/headerdirs.texi: GNU CC -> GCC.
+
2003-05-18 Gabriel Dos Reis <gdr@integrable-solutions.net>
* hashtable.h (struct ht_identifier): Add data member "hash_value".
diff --git a/gcc/doc/collect2.texi b/gcc/doc/collect2.texi
index a3d43b2..c3498c5 100644
--- a/gcc/doc/collect2.texi
+++ b/gcc/doc/collect2.texi
@@ -5,7 +5,7 @@
@node Collect2
@chapter @code{collect2}
-GNU CC uses a utility called @code{collect2} on nearly all systems to arrange
+GCC uses a utility called @code{collect2} on nearly all systems to arrange
to call various initialization functions at start time.
The program @code{collect2} works by linking the program once and
diff --git a/gcc/doc/headerdirs.texi b/gcc/doc/headerdirs.texi
index beac0dd..bc7f07f 100644
--- a/gcc/doc/headerdirs.texi
+++ b/gcc/doc/headerdirs.texi
@@ -6,28 +6,27 @@
@chapter Standard Header File Directories
@code{GCC_INCLUDE_DIR} means the same thing for native and cross. It is
-where GNU CC stores its private include files, and also where GNU CC
-stores the fixed include files. A cross compiled GNU CC runs
+where GCC stores its private include files, and also where GCC
+stores the fixed include files. A cross compiled GCC runs
@code{fixincludes} on the header files in @file{$(tooldir)/include}.
(If the cross compilation header files need to be fixed, they must be
-installed before GNU CC is built. If the cross compilation header files
-are already suitable for ISO C and GNU CC, nothing special need be
-done).
+installed before GCC is built. If the cross compilation header files
+are already suitable for GCC, nothing special need be done).
@code{GPLUSPLUS_INCLUDE_DIR} means the same thing for native and cross. It
is where @command{g++} looks first for header files. The C++ library
installs only target independent header files in that directory.
-@code{LOCAL_INCLUDE_DIR} is used only by native compilers. GNU CC
+@code{LOCAL_INCLUDE_DIR} is used only by native compilers. GCC
doesn't install anything there. It is normally
@file{/usr/local/include}. This is where local additions to a packaged
system should place header files.
-@code{CROSS_INCLUDE_DIR} is used only by cross compilers. GNU CC
+@code{CROSS_INCLUDE_DIR} is used only by cross compilers. GCC
doesn't install anything there.
@code{TOOL_INCLUDE_DIR} is used for both native and cross compilers. It
-is the place for other packages to install header files that GNU CC will
+is the place for other packages to install header files that GCC will
use. For a cross-compiler, this is the equivalent of
@file{/usr/include}. When you build a cross-compiler,
@code{fixincludes} processes any header files in this directory.