diff options
author | Christian Heimes <christian@cheimes.de> | 2013-11-20 16:43:23 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-11-20 16:43:23 (GMT) |
commit | f3bf35eee4d48e214d9684d788934262687dbea3 (patch) | |
tree | 91d02ba9f67aff0d9f0722c4b8ace04a6a8f380b /PCbuild | |
parent | 552e6c7284b9fd45707facee67b2105e858502f6 (diff) | |
download | cpython-f3bf35eee4d48e214d9684d788934262687dbea3.zip cpython-f3bf35eee4d48e214d9684d788934262687dbea3.tar.gz cpython-f3bf35eee4d48e214d9684d788934262687dbea3.tar.bz2 |
Issue #16632: Enable DEP and ASLR on Windows.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pyproject.props | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props index 6be0ba2..7c8e053 100644 --- a/PCbuild/pyproject.props +++ b/PCbuild/pyproject.props @@ -49,9 +49,8 @@ <GenerateDebugInformation>true</GenerateDebugInformation> <ProgramDatabaseFile>$(OutDir)$(TargetName).pdb</ProgramDatabaseFile> <SubSystem>Windows</SubSystem> - <RandomizedBaseAddress>false</RandomizedBaseAddress> - <DataExecutionPrevention> - </DataExecutionPrevention> + <RandomizedBaseAddress>true</RandomizedBaseAddress> + <DataExecutionPrevention>true</DataExecutionPrevention> <TargetMachine>MachineX86</TargetMachine> </Link> <ResourceCompile> |