pgsql: Disable RandomizedBaseAddress on MSVC builds

From: Magnus Hagander <magnus(at)hagander(dot)net>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Disable RandomizedBaseAddress on MSVC builds
Date: 2014-02-18 13:55:42
Message-ID: E1WFl9C-0007th-Fq@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Disable RandomizedBaseAddress on MSVC builds

The ASLR in Windows 8/Windows 2012 can break PostgreSQL's shared memory. It
doesn't fail every time (which is explained by the Random part in ASLR), but
can fail with errors abut failing to reserve shared memory region.

MauMau, reviewed by Craig Ringer

Branch
------
REL9_2_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/062deb31387b0e3190f8084c2de2194f40ee6a96

Modified Files
--------------
src/tools/msvc/MSBuildProject.pm | 1 +
src/tools/msvc/VCBuildProject.pm | 1 +
2 files changed, 2 insertions(+)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2014-02-18 17:45:10 pgsql: Remove broken code that tried to handle OVERLAPS with a single a
Previous Message Heikki Linnakangas 2014-02-18 07:51:30 pgsql: Fix comment; checkpointer, not bgwriter, performs checkpoints si