From 308919f371ce88ac75b04c9b817f4f09dc1b7aa6 Mon Sep 17 00:00:00 2001 From: kai Date: Sat, 20 Apr 2013 14:07:30 +0200 Subject: [PATCH] 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. --- driver/linker.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/driver/linker.cpp b/driver/linker.cpp index 44da6320..052aa9ae 100644 --- a/driver/linker.cpp +++ b/driver/linker.cpp @@ -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)