Commit 94c5035e by Jason Merrill

(INCLUDE_DEFAULTS): Add cxx_aware field.

From-SVN: r7185
parent 326af3bf
...@@ -26,26 +26,26 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ ...@@ -26,26 +26,26 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#undef INCLUDE_DEFAULTS #undef INCLUDE_DEFAULTS
#define INCLUDE_DEFAULTS \ #define INCLUDE_DEFAULTS \
{ \ { \
{ GPLUSPLUS_INCLUDE_DIR, 1}, \ { GPLUSPLUS_INCLUDE_DIR, 1, 1 }, \
{ LOCAL_INCLUDE_DIR, 0}, \ { LOCAL_INCLUDE_DIR, 0, 1 }, \
{ TOOL_INCLUDE_DIR, 0 }, \ { TOOL_INCLUDE_DIR, 0, 1 }, \
{ GCC_INCLUDE_DIR, 0}, \ { GCC_INCLUDE_DIR, 0, 0 }, \
/* These are for fixincludes-fixed ansi/bsd headers \ /* These are for fixincludes-fixed ansi/bsd headers \
which wouldn't be found otherwise. \ which wouldn't be found otherwise. \
(The use of string catenation here is OK since \ (The use of string catenation here is OK since \
NeXT's native compiler is derived from GCC.) */ \ NeXT's native compiler is derived from GCC.) */ \
{ GCC_INCLUDE_DIR "/ansi", 0 }, \ { GCC_INCLUDE_DIR "/ansi", 0, 0 }, \
{ GCC_INCLUDE_DIR "/bsd", 0 }, \ { GCC_INCLUDE_DIR "/bsd", 0, 0 }, \
{ "/NextDeveloper/Headers", 0}, \ { "/NextDeveloper/Headers", 0, 0 }, \
{ "/NextDeveloper/Headers/ansi", 0}, \ { "/NextDeveloper/Headers/ansi", 0, 0 }, \
{ "/NextDeveloper/Headers/bsd", 0}, \ { "/NextDeveloper/Headers/bsd", 0, 0 }, \
{ "/LocalDeveloper/Headers", 0}, \ { "/LocalDeveloper/Headers", 0, 0 }, \
{ "/LocalDeveloper/Headers/ansi", 0}, \ { "/LocalDeveloper/Headers/ansi", 0, 0 }, \
{ "/LocalDeveloper/Headers/bsd", 0}, \ { "/LocalDeveloper/Headers/bsd", 0, 0 }, \
{ "/NextDeveloper/2.0CompatibleHeaders", 0}, \ { "/NextDeveloper/2.0CompatibleHeaders", 0, 0 }, \
{ STANDARD_INCLUDE_DIR, 0}, \ { STANDARD_INCLUDE_DIR, 0, 0 }, \
{ "/usr/include/bsd", 0}, \ { "/usr/include/bsd", 0, 0 }, \
{ 0, 0} \ { 0, 0, 0 } \
} }
#endif /* CROSS_COMPILE */ #endif /* CROSS_COMPILE */
......
...@@ -72,11 +72,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ ...@@ -72,11 +72,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* Specify the list of include file directories. */ /* Specify the list of include file directories. */
#define INCLUDE_DEFAULTS \ #define INCLUDE_DEFAULTS \
{ \ { \
{ "GNU_GXX_INCLUDE:", 1}, \ { "GNU_GXX_INCLUDE:", 1, 1 }, \
{ "GNU_CC_INCLUDE:", 0}, /* GNU includes */ \ { "GNU_CC_INCLUDE:", 0, 0 }, /* GNU includes */ \
{ "SYS$SYSROOT:[SYSLIB.]", 0}, /* VAX-11 "C" includes */ \ { "SYS$SYSROOT:[SYSLIB.]", 0, 0 }, /* VAX-11 "C" includes */ \
{ ".", 0}, /* Make normal VMS filespecs work. */ \ { ".", 0, 1 }, /* Make normal VMS filespecs work. */ \
{ 0, 0} \ { 0, 0, 0 } \
} }
/* Under VMS a directory specification can be enclosed either in square /* Under VMS a directory specification can be enclosed either in square
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment