This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: GCC 4.6.0 Released


Bernd Roesch <nospamname@gmx.de> writes:

> I add an error in file libiberty/pex-win32.c to check if cygwin build use win32_spawn.
> but gcc compile ok, so it seem that cygwin build do not use pex-win32.c.Or need i set a compile
> option for GCC ?

The choice is determined in libiberty/configure.ac:

     *-*-mingw* | *-*-winnt*)	pexecute=pex-win32  ;;
     *-*-msdosdjgpp*)		pexecute=pex-djgpp  ;;
     *-*-msdos*)		pexecute=pex-msdos  ;;
     *)				pexecute=pex-unix   ;;

It may be appropriate to use pex-win32 for *-*-cygwin*.  I don't know,
as I am not a cygwin user myself.

Ian


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]