summaryrefslogtreecommitdiffstats
path: root/PCbuild/build_ssl.py
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2007-06-12 17:28:31 (GMT)
committerThomas Heller <theller@ctypes.org>2007-06-12 17:28:31 (GMT)
commit46950bae3e747af4f8c9d75d64a9895c09ea0bdc (patch)
treef61fa8d4a748f94005d4501f410760cc9d5f1571 /PCbuild/build_ssl.py
parentd34f9e9a544cddd7f7ac4a8dd8e23a369b5c77a2 (diff)
downloadcpython-46950bae3e747af4f8c9d75d64a9895c09ea0bdc.zip
cpython-46950bae3e747af4f8c9d75d64a9895c09ea0bdc.tar.gz
cpython-46950bae3e747af4f8c9d75d64a9895c09ea0bdc.tar.bz2
Specify the bufferoverflowU.lib to the makefile on the command line
(for ReleaseAMD64 builds).
Diffstat (limited to 'PCbuild/build_ssl.py')
-rw-r--r--PCbuild/build_ssl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/build_ssl.py b/PCbuild/build_ssl.py
index 2a31ca4..96809b3 100644
--- a/PCbuild/build_ssl.py
+++ b/PCbuild/build_ssl.py
@@ -170,7 +170,7 @@ def main():
if debug:
defs = defs + " " + "DEBUG=1"
if arch in ('amd64', 'ia64'):
- defs = defs + " EXTRA_CFLAGS=/GS-"
+ defs = defs + " EXTRA_CFLAGS=/GS- EXTRA_LIBS=bufferoverflowU.lib"
makeCommand = 'nmake /nologo -f _ssl.mak ' + defs + " " + make_flags
print "Executing:", makeCommand
sys.stdout.flush()