Consider the following code: main.d: import std.stdio; int main() { alias creal T; writeln("alloc"); T[] x = new T[4]; writeln("done"); return 0; } This runs fine when compiled with: dmd main.d main However, it never displays "done" (it hangs) when compiled with: dmd -c main.d link main.obj main This is the case ONLY if T is 'double', 'idouble', 'creal'. I tried all other types, but they work fine. Even a struct with one member of type double. I use the binary package for windows of D2.056, at a Win7 32bit system. If you need more info, please ask.
Might be duplicate of http://d.puremagic.com/issues/show_bug.cgi?id=3683 Except the linker links fine, the final executable does not.
The issue is with how the linker is invoked, not with DMD itself. Reduced test-case: void main() { creal[] x = new creal[4]; } $ dmd -c test.d OK: $ link test.obj /noi $ test.exe Hangs: $ link test.obj $ test.exe /noi is short for /noignorecase Perhaps we must always use /noi, in which case this is an invalid bug report. Walter?
(In reply to Andrej Mitrovic from comment #2) > Perhaps we must always use /noi, in which case this is an invalid bug > report. It's certainly weird that the Microsoft linker defaults to case-insensitivity even though C is case-sensitive, but it's no surprise if weird bugs arise from said case-insensitivity. In any case, I don't see why wrong link settings need to be DMD's burden. Though it's not impossible that a workaround in DMD in theory might exist, the primary cause of this problem is clearly user error.