From a3105a8956f319e63594d92be80f10d87f3b23c7 Mon Sep 17 00:00:00 2001 From: Mumit Khan Date: Sat, 17 Jan 1998 21:33:56 +0000 Subject: pexecute.c (pexecute): New function for mingw32. * pexecute.c (pexecute): New function for mingw32. Supports pipes. (pwait): New function for mingw32. * gcc.c (execute): Mingw32 pexecute() supports pipes, but cygwin32 pipe support is broken for now. Co-Authored-By: J.J. VanderHeijden From-SVN: r17396 --- gcc/gcc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/gcc.c') diff --git a/gcc/gcc.c b/gcc/gcc.c index 6e4a10d..52a23bb 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -2159,7 +2159,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 (__CYGWIN32__)) || defined (OS2) || defined (VMS) +#if defined (__MSDOS__) || (defined (_WIN32) && defined (__CYGWIN32_)) || defined (OS2) || defined (VMS) fatal ("-pipe not supported"); #endif argbuf[i] = 0; /* termination of command args. */ -- cgit v1.1