mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
Merge 53501 and 53502 from 25 branch:
Add /GS- for AMD64 and Itanium builds where missing.
This commit is contained in:
parent
1b0ce85271
commit
cc0eba9d98
17 changed files with 21 additions and 19 deletions
|
|
@ -169,6 +169,8 @@ def main():
|
|||
defs = "SSL_DIR=\"%s\"" % (ssl_dir,)
|
||||
if debug:
|
||||
defs = defs + " " + "DEBUG=1"
|
||||
if arch in ('amd64', 'ia64'):
|
||||
defs = defs + " EXTRA_CFLAGS=/GS-"
|
||||
makeCommand = 'nmake /nologo -f _ssl.mak ' + defs + " " + make_flags
|
||||
print "Executing:", makeCommand
|
||||
sys.stdout.flush()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue