Re: Trying to generate gdc for mingw-w64(x86 and x64) using msys2

2015-11-10 Thread Johannes Pfau via D.gnu
Am Tue, 10 Nov 2015 08:03:02 + schrieb Vincent R : > On Monday, 9 November 2015 at 16:47:20 UTC, Johannes Pfau wrote: > > Am Mon, 09 Nov 2015 00:22:52 + > > schrieb Vincent R : > > > >> I tried a last time before and I managed to make it work not > >> completely but at least I can see a

Re: Trying to generate gdc for mingw-w64(x86 and x64) using msys2

2015-11-10 Thread Vincent R via D.gnu
On Monday, 9 November 2015 at 16:47:20 UTC, Johannes Pfau wrote: Am Mon, 09 Nov 2015 00:22:52 + schrieb Vincent R : I tried a last time before and I managed to make it work not completely but at least I can see a hello world application on the console: $ gdc -o main.exe main.d $ ./main.

Re: Trying to generate gdc for mingw-w64(x86 and x64) using msys2

2015-11-09 Thread Johannes Pfau via D.gnu
Am Mon, 09 Nov 2015 00:22:52 + schrieb Vincent R : > I tried a last time before and I managed to make it work not > completely but at least I can see a hello world application on > the console: > > > $ gdc -o main.exe main.d > $ ./main.exe > Hello D-World! > > It's late now but I have som

Re: Trying to generate gdc for mingw-w64(x86 and x64) using msys2

2015-11-08 Thread Vincent R via D.gnu
On Saturday, 7 November 2015 at 14:13:36 UTC, Vincent R wrote: On Saturday, 7 November 2015 at 13:43:52 UTC, Vincent R wrote: On Friday, 6 November 2015 at 18:15:06 UTC, Vincent R wrote: On Friday, 6 November 2015 at 10:07:53 UTC, Vincent R wrote: [...] Ok I was able to generate a gdc compil

Re: Trying to generate gdc for mingw-w64(x86 and x64) using msys2

2015-11-07 Thread Vincent R via D.gnu
On Saturday, 7 November 2015 at 13:43:52 UTC, Vincent R wrote: On Friday, 6 November 2015 at 18:15:06 UTC, Vincent R wrote: On Friday, 6 November 2015 at 10:07:53 UTC, Vincent R wrote: [...] Ok I was able to generate a gdc compiler(x64) so now I need to test it and I will keep you informed.

Re: Trying to generate gdc for mingw-w64(x86 and x64) using msys2

2015-11-07 Thread Vincent R via D.gnu
On Friday, 6 November 2015 at 18:15:06 UTC, Vincent R wrote: On Friday, 6 November 2015 at 10:07:53 UTC, Vincent R wrote: [...] Ok I was able to generate a gdc compiler(x64) so now I need to test it and I will keep you informed. It doesn't work... $ gdc main.d gdc.exe: error: CreateProcess:

Re: Trying to generate gdc for mingw-w64(x86 and x64) using msys2

2015-11-06 Thread Vincent R via D.gnu
On Friday, 6 November 2015 at 10:07:53 UTC, Vincent R wrote: [...] Ok I was able to generate a gdc compiler(x64) so now I need to test it and I will keep you informed.

Re: Trying to generate gdc for mingw-w64(x86 and x64) using msys2

2015-11-06 Thread Vincent R via D.gnu
On Friday, 6 November 2015 at 09:37:31 UTC, Vincent R wrote: On Thursday, 5 November 2015 at 20:26:27 UTC, Johannes Pfau wrote: Am Thu, 05 Nov 2015 18:42:32 + schrieb Vincent R : On Thursday, 5 November 2015 at 14:27:20 UTC, Vincent R wrote: > [...] I tried to add a version(MinGW) inside

Re: Trying to generate gdc for mingw-w64(x86 and x64) using msys2

2015-11-06 Thread Vincent R via D.gnu
On Thursday, 5 November 2015 at 20:26:27 UTC, Johannes Pfau wrote: Am Thu, 05 Nov 2015 18:42:32 + schrieb Vincent R : On Thursday, 5 November 2015 at 14:27:20 UTC, Vincent R wrote: > [...] I tried to add a version(MinGW) inside core.sys.posix.sys.types to just declare pthread_key_t but it

Re: Trying to generate gdc for mingw-w64(x86 and x64) using msys2

2015-11-05 Thread Johannes Pfau via D.gnu
Am Thu, 05 Nov 2015 18:42:32 + schrieb Vincent R : > On Thursday, 5 November 2015 at 14:27:20 UTC, Vincent R wrote: > > [...] > > I tried to add a version(MinGW) inside core.sys.posix.sys.types > to just declare pthread_key_t but it didn't work because I still > have exactly the same erro

Re: Trying to generate gdc for mingw-w64(x86 and x64) using msys2

2015-11-05 Thread Vincent R via D.gnu
On Thursday, 5 November 2015 at 14:27:20 UTC, Vincent R wrote: [...] I tried to add a version(MinGW) inside core.sys.posix.sys.types to just declare pthread_key_t but it didn't work because I still have exactly the same error. So am I supposed to do ?

Re: Trying to generate gdc for mingw-w64(x86 and x64) using msys2

2015-11-05 Thread Vincent R via D.gnu
On Thursday, 5 November 2015 at 13:15:45 UTC, Johannes Pfau wrote: Am Thu, 05 Nov 2015 12:42:08 + schrieb Vincent R : Hi, I would like to generate a d compiler targeting mingw-w64 using the msys2 build system. So I have installed msys2 (posix emulation like cygwin) as shown here: http://

Re: Trying to generate gdc for mingw-w64(x86 and x64) using msys2

2015-11-05 Thread Johannes Pfau via D.gnu
Am Thu, 05 Nov 2015 12:42:08 + schrieb Vincent R : > Hi, > > I would like to generate a d compiler targeting mingw-w64 using > the msys2 build system. > So I have installed msys2 (posix emulation like cygwin) as shown > here: http://msys2.github.io/ and I have installed necessary > package

Trying to generate gdc for mingw-w64(x86 and x64) using msys2

2015-11-05 Thread Vincent R via D.gnu
Hi, I would like to generate a d compiler targeting mingw-w64 using the msys2 build system. So I have installed msys2 (posix emulation like cygwin) as shown here: http://msys2.github.io/ and I have installed necessary packages: $ pacman -S base-devel $ pacman -S mingw-w64-x86_64-toolchain o