Specify the bufferoverflowU.lib to the makefile on the command line

(for ReleaseAMD64 builds).
This commit is contained in:
Thomas Heller 2007-06-12 17:28:31 +00:00
parent d34f9e9a54
commit 46950bae3e
2 changed files with 4 additions and 3 deletions

View file

@ -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()