aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorStan Cox <scox@cygnus.com>1998-12-24 10:30:08 +0000
committerStan Cox <scox@gcc.gnu.org>1998-12-24 10:30:08 +0000
commit6405c0eca8ff40ad99fff19a54e54f29b936f526 (patch)
tree3ce4a27c68bc98df9aa162f33af20e2ee90c0d01 /gcc
parent05b3fb45b89213bbfc84bbf8abda10ff4c7bafc4 (diff)
downloadgcc-6405c0eca8ff40ad99fff19a54e54f29b936f526.zip
gcc-6405c0eca8ff40ad99fff19a54e54f29b936f526.tar.gz
gcc-6405c0eca8ff40ad99fff19a54e54f29b936f526.tar.bz2
* gcc.c (execute): Enable -pipe with win32.
From-SVN: r24414
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/gcc.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 1da6d68..260d22c 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+Thu Dec 24 10:39:57 1998 Stan Cox <scox@cygnus.com>
+
+ * gcc.c (execute): Enable -pipe with win32.
+
Wed Dec 23 10:27:44 1998 Nick Clifton <nickc@cygnus.com>
* config/arm/t-arm-elf: Add multiplib option for leading
diff --git a/gcc/gcc.c b/gcc/gcc.c
index bd70a21..cda78b6 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -2211,7 +2211,7 @@ execute ()
for (n_commands = 1, i = 0; i < argbuf_index; i++)
if (strcmp (argbuf[i], "|") == 0)
{ /* each command. */
-#if defined (__MSDOS__) || (defined (_WIN32) && defined (__CYGWIN__)) || defined (OS2) || defined (VMS)
+#if defined (__MSDOS__) || defined (OS2) || defined (VMS)
fatal ("-pipe not supported");
#endif
argbuf[i] = 0; /* termination of command args. */