-
-
Notifications
You must be signed in to change notification settings - Fork 267
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LDC only compiles with /LARGEADDRESSAWARE:NO on Win64 #442
Comments
The Wiki page at http://wiki.dlang.org/Building_and_hacking_LDC_on_Windows_using_MSVC says that /LARGEADDRESSAWARE:NO is required due to an LLVM bug, but I'm able to compile and run just fine if I manually link LDC generated files without the flag. Perhaps the bug in LLVM was fixed, and the restriction can be lifted, or a compiler flag to override the behavior can be added? I've built LDC with LLVM at tag |
It is fixed in LLVM 3.4. With LLVM 3.3 it won't work if you specify |
Figured I'd close this as it's fixed when using LLVM 3.4. Please re-open if that's not a good reason. |
Reopening this issue. |
A work-around for LDC issue ldc-developers#442 regarding debug infos.
A work-around for LDC issue ldc-developers#442 regarding debug infos.
A work-around for LDC issue ldc-developers#442 regarding debug infos.
Finally obsolete due to CodeView debug infos and fixed by #1880. |
This makes it impossible to use of 2gb of memory, which is very unfortunate given one of the main reasons for compiling 64 bit is to be able to use more than the 32 bit address space.
I've tried passing the flag -L"/LARGEADDRESSAWARE" and -L"-LARGEADDRESSAWARE", however LDC turns the first into a file to link with, and the second into a /LIBPATH argument, so I've had no luck overriding by passing in an additional flag.
Is there a way to get around this limitation?
The text was updated successfully, but these errors were encountered: