Re: [Mingw-w64-public] mingw-w64 v5 and gcc 8 fails

2018-05-04 Thread Mateusz
The patch is only in master (v6) branch https://sourceforge.net/p/mingw-w64/mingw-w64/ci/3ce3e27f044935f19e93e80c43ca695262d484e1/ JonY could you backport this patch to v5.x branch? Mateusz W dniu 04.05.2018 o 16:32, JonY via Mingw-w64-public pisze: > On 05/04/2018 12:35 PM, Christer Solskogen

Re: [Mingw-w64-public] mingw-w64 v5 and gcc 8 fails

2018-05-04 Thread JonY via Mingw-w64-public
On 05/04/2018 12:35 PM, Christer Solskogen wrote: > It fails with this: > > make[1]: Entering directory > '/tmp/obj/_build/mingw-w64.crt.cross.x86_64-w64-mingw32' > x86_64-w64-mingw32-gcc -DHAVE_CONFIG_H -I. > -I/home/solskogen/mingw-w64-builder/trunk/lib/mingw-w64/mingw-w64-crt > -m64 > -I/home/s

Re: [Mingw-w64-public] [PATCH] gendef: Silence warnings about casting function pointers on, GCC 8.

2018-05-04 Thread Liu Hao
在 2018/5/4 21:06, Liu Hao 写道: 在 2018/5/4 20:14, Martin Storsjö 写道: Ok with me. Annoying if GCC now has made this warning even harder to get around... Pushed. This is not an old issue, since C never allows such casts, albeit it is required by POSIX. The warning can still be observed on an

Re: [Mingw-w64-public] [PATCH] gendef: Silence warnings about casting function pointers on, GCC 8.

2018-05-04 Thread Liu Hao
在 2018/5/4 20:14, Martin Storsjö 写道: Ok with me. Annoying if GCC now has made this warning even harder to get around... Pushed. This is not an old issue, since C never allows such casts, albeit it is required by POSIX. The warning can still be observed on an older version of GCC with `-pe

[Mingw-w64-public] mingw-w64 v5 and gcc 8 fails

2018-05-04 Thread Christer Solskogen
It fails with this: make[1]: Entering directory '/tmp/obj/_build/mingw-w64.crt.cross.x86_64-w64-mingw32' x86_64-w64-mingw32-gcc -DHAVE_CONFIG_H -I. -I/home/solskogen/mingw-w64-builder/trunk/lib/mingw-w64/mingw-w64-crt -m64 -I/home/solskogen/mingw-w64-builder/trunk/lib/mingw-w64/mingw-w64-crt/

Re: [Mingw-w64-public] [PATCH] gendef: Silence warnings about casting function pointers on, GCC 8.

2018-05-04 Thread Martin Storsjö
On Wed, 2 May 2018, Liu Hao wrote: From ea84b4501db5b7f5eb642751c1418ff23afeb11f Mon Sep 17 00:00:00 2001 From: Liu Hao Date: Wed, 2 May 2018 10:48:01 +0800 Subject: [PATCH] gendef: Silence warnings about casting function pointers on GCC 8. GCC 8 warns about casting between incompatible point

Re: [Mingw-w64-public] [PATCH] winpthreads: Fix building for ARM and ARM64

2018-05-04 Thread Martin Storsjö
On Fri, 4 May 2018, JonY via Mingw-w64-public wrote: On 05/04/2018 09:10 AM, Martin Storsjö wrote: The libgcc stubs aren't necessary if building this when using compiler-rt, after those stubs are available. Just make the fake libgcc assembly file a no-op if targeting another architecture. P

Re: [Mingw-w64-public] [PATCH] gendef: Silence warnings about casting function pointers on, GCC 8.

2018-05-04 Thread Liu Hao
在 2018年05月02日 10:53, Liu Hao 写道: > From ea84b4501db5b7f5eb642751c1418ff23afeb11f Mon Sep 17 00:00:00 2001 > From: Liu Hao > Date: Wed, 2 May 2018 10:48:01 +0800 > Subject: [PATCH] gendef: Silence warnings about casting function pointers on > GCC 8. > > GCC 8 warns about casting between incompat

Re: [Mingw-w64-public] [PATCH] winpthreads: Fix building for ARM and ARM64

2018-05-04 Thread JonY via Mingw-w64-public
On 05/04/2018 09:10 AM, Martin Storsjö wrote: > The libgcc stubs aren't necessary if building this when using > compiler-rt, after those stubs are available. > > Just make the fake libgcc assembly file a no-op if targeting another > architecture. > Patch is OK. signature.asc Description: Open

[Mingw-w64-public] [PATCH] winpthreads: Fix building for ARM and ARM64

2018-05-04 Thread Martin Storsjö
The libgcc stubs aren't necessary if building this when using compiler-rt, after those stubs are available. Just make the fake libgcc assembly file a no-op if targeting another architecture. Signed-off-by: Martin Storsjö --- mingw-w64-libraries/winpthreads/src/libgcc/dll_dependency.S | 2 ++ mi