Re: 64 bit linker issues

2012-12-22 Thread Benjamin Thaut
On Saturday, 22 December 2012 at 16:41:15 UTC, Rainer Schuetze wrote: Could be this one: https://github.com/D-Programming-Language/dmd/pull/1315 dmd might also add some library paths, try -v to see whether they conflict with your manually specified paths. Thanks for the tip. Adding a sc.in

Re: 64 bit linker issues

2012-12-22 Thread Rainer Schuetze
On 22.12.2012 13:40, Benjamin Thaut wrote: I wanted to fix http://d.puremagic.com/issues/show_bug.cgi?id=8936 and I'm currently trying to compile a little repro case in x64 on windows: [...] I compiled with the latest git master branch versions of dmd and druntime. Druntime was build with th

64 bit linker issues

2012-12-22 Thread Benjamin Thaut
I wanted to fix http://d.puremagic.com/issues/show_bug.cgi?id=8936 and I'm currently trying to compile a little repro case in x64 on windows: import core.stdc.stdio; import core.sys.windows.windows; void bar() { throw new Exception("Ex"); } void foo() { bar(); } void main(str