diff options
Diffstat (limited to 'gcc/cppdefault.c')
-rw-r--r-- | gcc/cppdefault.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/cppdefault.c b/gcc/cppdefault.c index 7a4ec0c..a51b05a 100644 --- a/gcc/cppdefault.c +++ b/gcc/cppdefault.c @@ -32,9 +32,13 @@ const struct default_include cpp_include_defaults[] #else = { #ifdef GPLUSPLUS_INCLUDE_DIR - /* Pick up GNU C++ specific include files. */ + /* Pick up GNU C++ generic include files. */ { GPLUSPLUS_INCLUDE_DIR, "G++", 1, 1 }, #endif +#ifdef GPLUSPLUS_TOOL_INCLUDE_DIR + /* Pick up GNU C++ target-dependent include files. */ + { GPLUSPLUS_TOOL_INCLUDE_DIR, "G++", 1, 1 }, +#endif #ifdef LOCAL_INCLUDE_DIR /* /usr/local/include comes before the fixincluded header files. */ { LOCAL_INCLUDE_DIR, 0, 0, 1 }, |