diff options
author | Richard Stallman <rms@gnu.org> | 1993-01-02 09:03:50 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-01-02 09:03:50 +0000 |
commit | 2a1bf18b82bb55eb36e158630df49d0f936f5a61 (patch) | |
tree | 8e4da99f7d6962719730dabbdc337bf04ad2e792 /gcc | |
parent | b7b08dcde44e819d6d57bbd27e6c825907be0b39 (diff) | |
download | gcc-2a1bf18b82bb55eb36e158630df49d0f936f5a61.zip gcc-2a1bf18b82bb55eb36e158630df49d0f936f5a61.tar.gz gcc-2a1bf18b82bb55eb36e158630df49d0f936f5a61.tar.bz2 |
(default_include): Look directly in TOOL_INCLUDE_DIR.
From-SVN: r3054
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cccp.c | 1 | ||||
-rw-r--r-- | gcc/protoize.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -539,6 +539,7 @@ static struct default_include { char *fname; int cplusplus; } include_defaults_a /* Pick up GNU C++ specific include files. */ { GPLUSPLUS_INCLUDE_DIR, 1}, { GCC_INCLUDE_DIR, 0}, + { TOOL_INCLUDE_DIR, 0}, #ifdef CROSS_COMPILE /* For cross-compilation, this dir name is generated automatically in Makefile.in. */ diff --git a/gcc/protoize.c b/gcc/protoize.c index 5a65334..c482af9 100644 --- a/gcc/protoize.c +++ b/gcc/protoize.c @@ -277,6 +277,7 @@ struct default_include { const char *fname; int cplusplus; } include_defaults[] /* Pick up GNU C++ specific include files. */ { GPLUSPLUS_INCLUDE_DIR, 1}, { GCC_INCLUDE_DIR, 0}, + { TOOL_INCLUDE_DIR, 0}, #ifdef CROSS_COMPILE /* For cross-compilation, this dir name is generated automatically in Makefile.in. */ |