From: Stan Cox Date: Thu, 24 Dec 1998 10:30:08 +0000 (+0000) Subject: * gcc.c (execute): Enable -pipe with win32. X-Git-Tag: prereleases/libgcj-0.1~1544 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6405c0eca8ff40ad99fff19a54e54f29b936f526;p=thirdparty%2Fgcc.git * gcc.c (execute): Enable -pipe with win32. From-SVN: r24414 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1da6d68078f0..260d22cc8537 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Thu Dec 24 10:39:57 1998 Stan Cox + + * gcc.c (execute): Enable -pipe with win32. + Wed Dec 23 10:27:44 1998 Nick Clifton * config/arm/t-arm-elf: Add multiplib option for leading diff --git a/gcc/gcc.c b/gcc/gcc.c index bd70a216f209..cda78b6dd933 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. */