Dentcho Bankov

Results 5 comments of Dentcho Bankov

As far as I can tell one reason 'dub test' not to work with 'betterC' option is that some code which dub emits to execute the unit tests uses 'writeln'...

Just realised that fixing the 'writeln' issue won't resolve this problem because tests are executed in module's shared static constructor which will not be executed in betterC. I'll try to...

> 1. You can use `-DLDC_LINK_MANUALLY=OFF` Unfortunately this didn't work for me. It seems that with "LDC_LINK_MANUALLY=OFF" some arguments are prefixed with "-Xcc=" and GDMD that I'm using (https://github.com/D-Programming-GDC/gdmd) reports...

Hi @lenoil98, Nice to hear this worked for you on FreeBSD PowerPC64! Having said the above I wonder which version of GCC/GDC you have used to bootstrap LDC. I'm asking...

Hi @lenoil98, I just realised that my patch avoids the symbols conflict by adding `-Wl,-allow-multiple-definition` (I'd forgoten about that) which is why it worked for you. Still I don't think...