Thread overview
Using gdc on Windows
May 20, 2020
NonNull
May 22, 2020
mw
May 25, 2020
Iain Buclaw
May 26, 2020
mw
May 26, 2020
MINGW-USER
May 26, 2020
Iain Buclaw
May 20, 2020
Hello,

I'd like to run gdc natively on Windows in a mingw compatible way. How can I proceed?

May 22, 2020
On Wednesday, 20 May 2020 at 23:18:32 UTC, NonNull wrote:
> Hello,
>
> I'd like to run gdc natively on Windows in a mingw compatible way. How can I proceed?

Not sure about GDC, native? maybe you can try this:

https://github.com/dlang/visuald/releases

VisualD-v0.52.0-dmd-2.091.0-ldc2-1.20.1.exe



May 25, 2020
On 21/05/2020 01:18, NonNull via D.gnu wrote:
> Hello,
> 
> I'd like to run gdc natively on Windows in a mingw compatible way. How can I proceed?
> 

We need some testers to verify this patch.

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91595
May 26, 2020
On Monday, 25 May 2020 at 10:23:50 UTC, Iain Buclaw wrote:
> On 21/05/2020 01:18, NonNull via D.gnu wrote:
>> Hello,
>> 
>> I'd like to run gdc natively on Windows in a mingw compatible way. How can I proceed?
>> 
>
> We need some testers to verify this patch.
>
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91595

Can you give instruction / link on how to install mingw gdc natively on Windows?

People here even don't know that.
May 26, 2020
On Monday, 25 May 2020 at 10:23:50 UTC, Iain Buclaw wrote:
> On 21/05/2020 01:18, NonNull via D.gnu wrote:
>> Hello,
>> 
>> I'd like to run gdc natively on Windows in a mingw compatible way. How can I proceed?
>> 
>
> We need some testers to verify this patch.
>
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91595

libdruntime build fails with error: undefined identifier '__gdc_personality_imp'.
Need Help.

libtool: compile:  gdc -DDLL_EXPORT -Wall -frelease -g -O2 -nostdinc -I ../../gcc-10.1.0/libphobos/libdruntime -I . -c ../../gcc-10.1.0/libphobos/libdruntime/gcc/deh.d -fversion=Shared -o gcc/.libs/deh.o
../../gcc-10.1.0/libphobos/libdruntime/gcc/deh.d:808:48: error: undefined identifier '__gdc_personality_imp'
  808 |                                      ms_disp, &__gdc_personality_imp);
      |                                                ^

May 26, 2020
On 26 May 2020 19:52:51 CEST, "MINGW-USER via D.gnu" <d.gnu@puremagic.com> wrote:
>On Monday, 25 May 2020 at 10:23:50 UTC, Iain Buclaw wrote:
>> On 21/05/2020 01:18, NonNull via D.gnu wrote:
>>> Hello,
>>> 
>>> I'd like to run gdc natively on Windows in a mingw compatible way. How can I proceed?
>>> 
>>
>> We need some testers to verify this patch.
>>
>> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91595
>
>libdruntime build fails with error: undefined identifier
>'__gdc_personality_imp'.
>Need Help.
>
>libtool: compile:  gdc -DDLL_EXPORT -Wall -frelease -g -O2 -nostdinc -I ../../gcc-10.1.0/libphobos/libdruntime -I . -c ../../gcc-10.1.0/libphobos/libdruntime/gcc/deh.d -fversion=Shared -o gcc/.libs/deh.o ../../gcc-10.1.0/libphobos/libdruntime/gcc/deh.d:808:48: error: undefined identifier '__gdc_personality_imp'
>   808 |                                      ms_disp,
>&__gdc_personality_imp);
>       |                                                ^
>

Looks like that should instead be `& gdc_personality`.

Iain