OSDN Git Service

2003-05-27 Aaron W. LaFramboise <awlaframboise@aol.com>
authordannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 28 May 2003 20:54:19 +0000 (20:54 +0000)
committerdannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 28 May 2003 20:54:19 +0000 (20:54 +0000)
* config/i386/mingw32.h (STANDARD_INCLUDE_DIR): Update.
(MD_STARTFILE_PREFIX): Define.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67212 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/i386/mingw32.h

index a3be29d..cbef037 100644 (file)
@@ -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
index 035dd5d..cfd9efb 100644 (file)
@@ -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.  */