Re: Adding support for mingw-w64 and winpthread

2016-03-30 Thread Vincent R via D.gnu
On Wednesday, 30 March 2016 at 11:44:41 UTC, Johannes Pfau wrote: Am Wed, 30 Mar 2016 08:27:27 + schrieb Vincent R : [...] Known problem, I'll probably push a fix to master for this soon. Linking -lws2_32 -lwsock32 is the correct workaround, but the libraries must be specified in the co

Re: Adding support for mingw-w64 and winpthread

2016-03-30 Thread Johannes Pfau via D.gnu
Am Wed, 30 Mar 2016 08:27:27 + schrieb Vincent R : > make[1]: Entering directory > '/home/19013692/tmp/wxd/src/Samples/Controls' > make[1]: Nothing to be done for 'all'. > make[1]: Leaving directory > '/home/19013692/tmp/wxd/src/Samples/Controls' > make -C Dialogs > make[1]: Entering directo

[Bug 215] Failing ARM test case on master (ICE)

2016-03-30 Thread via D.gnu
http://bugzilla.gdcproject.org/show_bug.cgi?id=215 --- Comment #1 from Johannes Pfau --- OK, found the problem: We should never set DECL_OFFSET_ALIGN to 0. The backend divides by DECL_OFFSET_ALIGN. If it divides by zero the result is a null tree which will then likely lead to a segfault. In typ

Re: Adding support for mingw-w64 and winpthread

2016-03-30 Thread Vincent R via D.gnu
On Friday, 25 March 2016 at 10:11:46 UTC, Johannes Pfau wrote: Am Fri, 25 Mar 2016 09:15:06 + schrieb Vincent R : > So the main question is: can we simply ditch gcc.gthreads > and inline the code into rt.monitor? Thanks for all this information and it seems your knowledge is far beyond mi