diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-11-03 18:03:09 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-11-03 18:03:09 -0500 |
commit | 858072f0daf2fac2c60947d8b4eb62c6844f2eb6 (patch) | |
tree | 9e1eca2422ae1a6c553ed05d4bbd9d640d8cae9d | |
parent | dd947ed946b8fea31877e67a0a0c57955ddcb4a7 (diff) | |
download | gcc-858072f0daf2fac2c60947d8b4eb62c6844f2eb6.zip gcc-858072f0daf2fac2c60947d8b4eb62c6844f2eb6.tar.gz gcc-858072f0daf2fac2c60947d8b4eb62c6844f2eb6.tar.bz2 |
TOOL_INCLUDE_DIR is not C++-aware.
From-SVN: r8378
-rw-r--r-- | gcc/cccp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -604,14 +604,14 @@ static struct default_include { automatically in Makefile.in. */ { CROSS_INCLUDE_DIR, 0, 0 }, /* This is another place that the target system's headers might be. */ - { TOOL_INCLUDE_DIR, 0, 1 }, + { TOOL_INCLUDE_DIR, 0, 0 }, #else /* not CROSS_COMPILE */ /* This should be /usr/local/include and should come before the fixincludes-fixed header files. */ { LOCAL_INCLUDE_DIR, 0, 1 }, /* This is here ahead of GCC_INCLUDE_DIR because assert.h goes here. Likewise, behind LOCAL_INCLUDE_DIR, where glibc puts its assert.h. */ - { TOOL_INCLUDE_DIR, 0, 1 }, + { TOOL_INCLUDE_DIR, 0, 0 }, /* This is the dir for fixincludes. Put it just before the files that we fix. */ { GCC_INCLUDE_DIR, 0, 0 }, |