diff options
author | Aaron W. LaFramboise <awlaframboise@aol.com> | 2003-05-28 20:54:19 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@gcc.gnu.org> | 2003-05-28 20:54:19 +0000 |
commit | 0bcbfabb353cc9f852b48d8bb16a61463ff16e4c (patch) | |
tree | 8c5be79d7cc1ca5cb7c4aa1dc192a5a70e63831b | |
parent | 291aac59a5c1cf12e32d59d194ff85b58b6910c7 (diff) | |
download | gcc-0bcbfabb353cc9f852b48d8bb16a61463ff16e4c.zip gcc-0bcbfabb353cc9f852b48d8bb16a61463ff16e4c.tar.gz gcc-0bcbfabb353cc9f852b48d8bb16a61463ff16e4c.tar.bz2 |
mingw32.h (STANDARD_INCLUDE_DIR): Update.
2003-05-27 Aaron W. LaFramboise <awlaframboise@aol.com>
* config/i386/mingw32.h (STANDARD_INCLUDE_DIR): Update.
(MD_STARTFILE_PREFIX): Define.
From-SVN: r67212
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/mingw32.h | 9 |
2 files changed, 12 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a3be29d..cbef037 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-05-27 Aaron W. LaFramboise <awlaframboise@aol.com> + + * config/i386/mingw32.h (STANDARD_INCLUDE_DIR): Update. + (MD_STARTFILE_PREFIX): Define. + 2003-05-27 Denis Chertykov <denisc@overta.ru> * cselib.c (cselib_invalidate_regno): Abort if hardreg have a diff --git a/gcc/config/i386/mingw32.h b/gcc/config/i386/mingw32.h index 035dd5d..cfd9efb 100644 --- a/gcc/config/i386/mingw32.h +++ b/gcc/config/i386/mingw32.h @@ -35,9 +35,10 @@ Boston, MA 02111-1307, USA. */ } \ while (0) -/* Specific a different directory for the standard include files. */ +/* Override the standard choice of /usr/include as the default prefix + to try when searching for header files. */ #undef STANDARD_INCLUDE_DIR -#define STANDARD_INCLUDE_DIR "/usr/local/mingw32/include" +#define STANDARD_INCLUDE_DIR "/mingw/include" #undef STANDARD_INCLUDE_COMPONENT #define STANDARD_INCLUDE_COMPONENT "MINGW" @@ -68,6 +69,10 @@ Boston, MA 02111-1307, USA. */ #define STARTFILE_SPEC "%{shared|mdll:dllcrt2%O%s} \ %{!shared:%{!mdll:crt2%O%s}} %{pg:gcrt2%O%s}" +/* An additional prefix to try after the standard prefixes. */ +#undef MD_STARTFILE_PREFIX +#define MD_STARTFILE_PREFIX "/mingw/lib/" + /* Output STRING, a string representing a filename, to FILE. We canonicalize it to be in Unix format (backslashes are replaced forward slashes. */ |