diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-10-02 01:06:25 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-10-02 01:06:25 +0000 |
commit | 99c2bf453a1eeaea1bf58f1c3a928982976b377b (patch) | |
tree | 338a3a84637eb2ec5dfdb0af4e2cd344c1fa74c2 /4.0.3 | |
parent | fixup _pic generation for #149414 and #149538 (diff) | |
download | gcc-patches-99c2bf453a1eeaea1bf58f1c3a928982976b377b.tar.gz gcc-patches-99c2bf453a1eeaea1bf58f1c3a928982976b377b.tar.bz2 gcc-patches-99c2bf453a1eeaea1bf58f1c3a928982976b377b.zip |
disable ice-hack for WIN32
Diffstat (limited to '4.0.3')
-rw-r--r-- | 4.0.3/gentoo/01_all_gcc4-ice-hack.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/4.0.3/gentoo/01_all_gcc4-ice-hack.patch b/4.0.3/gentoo/01_all_gcc4-ice-hack.patch index 016d73d..68d6e14 100644 --- a/4.0.3/gentoo/01_all_gcc4-ice-hack.patch +++ b/4.0.3/gentoo/01_all_gcc4-ice-hack.patch @@ -28,7 +28,7 @@ #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX) static const char *convert_filename (const char *, int, int); #endif -+#if !(defined (__MSDOS__) || defined (OS2) || defined (VMS)) ++#if !(defined (__MSDOS__) || defined (OS2) || defined (VMS) || defined (WIN32)) +static void retry_ice (const char *prog, const char **argv); +#endif @@ -47,7 +47,7 @@ else if (WIFEXITED (status) && WEXITSTATUS (status) >= MIN_FATAL_STATUS) { -+#if !(defined (__MSDOS__) || defined (OS2) || defined (VMS)) ++#if !(defined (__MSDOS__) || defined (OS2) || defined (VMS) || defined (WIN32)) + /* For ICEs in cc1, cc1obj, cc1plus see if it is + reproducible or not. */ + char *p; @@ -76,7 +76,7 @@ switches[switchnum].validated = 1; } -+#if !(defined (__MSDOS__) || defined (OS2) || defined (VMS)) ++#if !(defined (__MSDOS__) || defined (OS2) || defined (VMS) || defined (WIN32)) +#define RETRY_ICE_ATTEMPTS 2 + +static void |