diff options
author | Mumit Khan <khan@xraylith.wisc.edu> | 1998-01-17 21:33:56 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-01-17 14:33:56 -0700 |
commit | a3105a8956f319e63594d92be80f10d87f3b23c7 (patch) | |
tree | 4ddabc9c801c690d8e76c304fa2ac8d55ea7828e /gcc/gcc.c | |
parent | 77aff459558ec67ceafc407420e014433828f7a5 (diff) | |
download | gcc-a3105a8956f319e63594d92be80f10d87f3b23c7.zip gcc-a3105a8956f319e63594d92be80f10d87f3b23c7.tar.gz gcc-a3105a8956f319e63594d92be80f10d87f3b23c7.tar.bz2 |
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 <J.J.vanderHeijden@student.utwente.nl>
From-SVN: r17396
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. */ |