http://d.puremagic.com/issues/show_bug.cgi?id=7042
Andrej Mitrovic <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] Summary|Allocation of 'creal' array |Allocation of 'creal' array |with 'new' fails when using |with 'new' fails when |DMD and OptLink in tandem |linking without /noi switch --- Comment #2 from Andrej Mitrovic <[email protected]> 2013-03-11 20:38:39 PDT --- 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? -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
