cppdefault.c (cpp_include_defaults): Move GCC_INCLUDE_DIR before LOCAL_INCLUDE_DIR.
2010-07-31 Kai Tietz <kai.tietz@onevision.com> * cppdefault.c (cpp_include_defaults): Move GCC_INCLUDE_DIR before LOCAL_INCLUDE_DIR. From-SVN: r162787
This commit is contained in:
parent
6cc1a978de
commit
da46381f2c
@ -1,3 +1,8 @@
|
|||||||
|
2010-07-31 Kai Tietz <kai.tietz@onevision.com>
|
||||||
|
|
||||||
|
* cppdefault.c (cpp_include_defaults): Move GCC_INCLUDE_DIR before
|
||||||
|
LOCAL_INCLUDE_DIR.
|
||||||
|
|
||||||
2010-07-31 Richard Sandiford <rdsandiford@googlemail.com>
|
2010-07-31 Richard Sandiford <rdsandiford@googlemail.com>
|
||||||
|
|
||||||
* tree-ssa-math-opts.c (convert_plusminus_to_widen): Fix type
|
* tree-ssa-math-opts.c (convert_plusminus_to_widen): Fix type
|
||||||
|
@ -58,6 +58,10 @@ const struct default_include cpp_include_defaults[]
|
|||||||
/* Pick up GNU C++ backward and deprecated include files. */
|
/* Pick up GNU C++ backward and deprecated include files. */
|
||||||
{ GPLUSPLUS_BACKWARD_INCLUDE_DIR, "G++", 1, 1, 0, 0 },
|
{ GPLUSPLUS_BACKWARD_INCLUDE_DIR, "G++", 1, 1, 0, 0 },
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef GCC_INCLUDE_DIR
|
||||||
|
/* This is the dir for gcc's private headers. */
|
||||||
|
{ GCC_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
|
||||||
|
#endif
|
||||||
#ifdef LOCAL_INCLUDE_DIR
|
#ifdef LOCAL_INCLUDE_DIR
|
||||||
/* /usr/local/include comes before the fixincluded header files. */
|
/* /usr/local/include comes before the fixincluded header files. */
|
||||||
{ LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 0 },
|
{ LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 0 },
|
||||||
@ -65,10 +69,6 @@ const struct default_include cpp_include_defaults[]
|
|||||||
#ifdef PREFIX_INCLUDE_DIR
|
#ifdef PREFIX_INCLUDE_DIR
|
||||||
{ PREFIX_INCLUDE_DIR, 0, 0, 1, 0, 0 },
|
{ PREFIX_INCLUDE_DIR, 0, 0, 1, 0, 0 },
|
||||||
#endif
|
#endif
|
||||||
#ifdef GCC_INCLUDE_DIR
|
|
||||||
/* This is the dir for gcc's private headers. */
|
|
||||||
{ GCC_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
|
|
||||||
#endif
|
|
||||||
#ifdef FIXED_INCLUDE_DIR
|
#ifdef FIXED_INCLUDE_DIR
|
||||||
/* This is the dir for fixincludes. */
|
/* This is the dir for fixincludes. */
|
||||||
{ FIXED_INCLUDE_DIR, "GCC", 0, 0, 0,
|
{ FIXED_INCLUDE_DIR, "GCC", 0, 0, 0,
|
||||||
|
Loading…
Reference in New Issue
Block a user