diff options
author | Magnus Hagander | 2014-03-16 10:46:20 +0000 |
---|---|---|
committer | Magnus Hagander | 2014-03-16 10:47:37 +0000 |
commit | 665515539f6a6ea05e73cf565eab671afbc3c02d (patch) | |
tree | 35f05d7820a35d66c51cc4793ea12da6e68e903f | |
parent | 0033f5324cbf7bcb5e9e559b3997af341b34e9ab (diff) |
Disable RandomizeBaseAddress on MSVC builds
This is a backpatch of 7f3e17b4827b61ad84e0774e3e43da4c57c4487f
to 9.0 and 9.1.
Patch by MauMau
-rw-r--r-- | src/tools/msvc/Project.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/msvc/Project.pm b/src/tools/msvc/Project.pm index 4f26b522505..f711a48a1c5 100644 --- a/src/tools/msvc/Project.pm +++ b/src/tools/msvc/Project.pm @@ -524,6 +524,7 @@ EOF StackReserveSize="4194304" DisableSpecificWarnings="$self->{disablewarnings}" GenerateDebugInformation="TRUE" ProgramDatabaseFile=".\\$cfgname\\$self->{name}\\$self->{name}.pdb" GenerateMapFile="FALSE" MapFileName=".\\$cfgname\\$self->{name}\\$self->{name}.map" + RandomizedBaseAddress="1" SubSystem="1" TargetMachine="$targetmachine" EOF if ($self->{disablelinkerwarnings}) |