Revert "Linker flag /LARGEADDRESSAWARE is not required with LLVM 3.3.".

There is still an issue left in LLVM. I need to investigate this further.
This commit is contained in:
kai 2013-04-20 14:07:30 +02:00
parent 47853ac078
commit 308919f371

View file

@ -237,10 +237,8 @@ static int linkObjToBinaryWin(bool sharedLib)
// use address space layout randomization (ASLR) feature
args.push_back("/DYNAMICBASE");
#if LDC_LLVM_VER <= 302
// because of a LLVM bug
args.push_back("/LARGEADDRESSAWARE:NO");
#endif
// output debug information
if (global.params.symdebug)