From: José Fonseca Date: Thu, 11 Sep 2014 10:43:04 +0000 (+0100) Subject: scons: add /dynamicbase and /nxcompat to MinGW linkflags X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=771ab951a8d3d16f577f0438a8d03544ff32b21f;p=mesa.git scons: add /dynamicbase and /nxcompat to MinGW linkflags Just like b26503b196d51dc46c815e241343e42ab30e8d66 for MSVC. --- diff --git a/scons/gallium.py b/scons/gallium.py index b6c05ecd800..1dcfa6b243c 100755 --- a/scons/gallium.py +++ b/scons/gallium.py @@ -529,6 +529,10 @@ def generate(env): else: env['_LIBFLAGS'] = '-Wl,--start-group ' + env['_LIBFLAGS'] + ' -Wl,--end-group' if env['platform'] == 'windows': + linkflags += [ + '-Wl,--nxcompat', # DEP + '-Wl,--dynamicbase', # ASLR + ] # Avoid depending on gcc runtime DLLs linkflags += ['-static-libgcc'] if 'w64' in env['CC'].split('-'): @@ -547,8 +551,8 @@ def generate(env): linkflags += [ '/fixed:no', '/incremental:no', - '/dynamicbase', - '/nxcompat', + '/dynamicbase', # ASLR + '/nxcompat', # DEP ] env.Append(LINKFLAGS = linkflags) env.Append(SHLINKFLAGS = shlinkflags)