[Mingw-w64-public] intrin-impl.h and @cc

2015-11-18 Thread dw
GCC 6.0 has introduced a new feature that allows inline asm to return flag registers (see https://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html#FlagOutputOperands). There are a couple dozen intrinsics in intrin-impl.h that would benefit from using this. There is a define that signals if the gc

Re: [Mingw-w64-public] Fix def file generation during parallel build

2015-11-18 Thread NightStrike
On Nov 18, 2015 4:39 AM, "JonY" wrote: > > On 11/17/2015 22:13, NightStrike wrote: > > This is a bad change. Make should be managing dependencies. It's bad > > form to force a call to mkdir for every iteration, when it only needs > > to be called once (especially on msys/cygwin, where that extra

Re: [Mingw-w64-public] Fix def file generation during parallel build

2015-11-18 Thread JonY
On 11/17/2015 22:13, NightStrike wrote: > This is a bad change. Make should be managing dependencies. It's bad > form to force a call to mkdir for every iteration, when it only needs > to be called once (especially on msys/cygwin, where that extra call is > non-trivial.) The correct way to do it