Re: Looking to make a GDC-12 mingw64 package

2022-09-13 Thread Preetpal via D.gnu
There are more issues with the GDC 11.3.0 that I compiled on Windows earlier (it was compiled with win32 threads). The following code has issues compiling (find_file.d): ``` import std.file; import std.stdio; /// Command line tool to find files in directories int main(string[] args) { if (

Re: Looking to make a GDC-12 mingw64 package

2022-09-06 Thread Preetpal via D.gnu
I am assuming you would like to have GDC available in the MSYS2 [MINGW32 , MINGW64, and UCRT64 environments](https://www.msys2.org/docs/environments/) (which is what I wanted). They have an open issue in the [MINGW packages repository](https://github.com/msys2/MINGW-packages/issues/6806) for a

Re: Looking to make a GDC-12 mingw64 package

2022-09-05 Thread Preetpal via D.gnu
On Saturday, 21 May 2022 at 21:18:15 UTC, Chris Piker wrote: Hi GDC I've been able to build gdc-12.1 on ubuntu20 using ``` wget http://mirrors.concertpass.com/gcc/releases/gcc-12.1.0/gcc-12.1.0.tar.xz tar -xvf gcc-12.1.0.tar.xz cd gcc-12.1.0 mkdir build cd build ../configure --prefix=/usr/loca

Re: Looking to make a GDC-12 mingw64 package

2022-09-01 Thread Preetpal via D.gnu
The second issue was that the compilation of GCC did not work for version gcc-11.2.0 on my version of MinGW. Many of the configure flags resulted in warnings in the configure process since they were not recognized (should these flags be in the configure command?): ``` configure: WARNING: unre

Re: Looking to make a GDC-12 mingw64 package

2022-09-01 Thread Preetpal via D.gnu
On Saturday, 21 May 2022 at 21:23:52 UTC, Adam D Ruppe wrote: On Saturday, 21 May 2022 at 21:18:15 UTC, Chris Piker wrote: 1. Anyone has built gdc-11 in the mingw64 environment since it seems a few patches are required? No patches are required, it is all upstreamed if you use the right sett

Re: Looking to make a GDC-12 mingw64 package

2022-05-21 Thread Chris Piker via D.gnu
On Saturday, 21 May 2022 at 21:23:52 UTC, Adam D Ruppe wrote: See my comment here: https://github.com/brechtsanders/winlibs_mingw/issues/48#issuecomment-1044782237 ...an example working configure command, now that's *very* handy. Regarding question 2, I hope to see gdc appear in just about a

Re: Looking to make a GDC-12 mingw64 package

2022-05-21 Thread Adam D Ruppe via D.gnu
On Saturday, 21 May 2022 at 21:18:15 UTC, Chris Piker wrote: 1. Anyone has built gdc-11 in the mingw64 environment since it seems a few patches are required? No patches are required, it is all upstreamed if you use the right settings. See my comment here: https://github.com/brechtsanders/

Looking to make a GDC-12 mingw64 package

2022-05-21 Thread Chris Piker via D.gnu
Hi GDC I've been able to build gdc-12.1 on ubuntu20 using ``` wget http://mirrors.concertpass.com/gcc/releases/gcc-12.1.0/gcc-12.1.0.tar.xz tar -xvf gcc-12.1.0.tar.xz cd gcc-12.1.0 mkdir build cd build ../configure --prefix=/usr/local/gcc12 --enable-languages=d \ --enable-libphobos-checking -