1 # Script for building the _ssl and _hashlib modules for Windows.
2 # Uses Perl to setup the OpenSSL environment correctly
3 # and build OpenSSL, then invokes a simple nmake session
4 # for the actual _ssl.pyd and _hashlib.pyd DLLs.
6 # THEORETICALLY, you can:
7 # * Unpack the latest SSL release one level above your main Python source
8 # directory. It is likely you will already find the zlib library and
9 # any other external packages there.
10 # * Install ActivePerl and ensure it is somewhere on your path.
11 # * Run this script from the PCBuild directory.
13 # it should configure and build SSL, then build the _ssl and _hashlib
14 # Python extensions without intervention.
16 # Modified by Christian Heimes
17 # Now this script supports pre-generated makefiles and assembly files.
18 # Developers don't need an installation of Perl anymore to build Python. A svn
19 # checkout from our svn repository is enough.
21 # In Order to create the files in the case of an update you still need Perl.
22 # Run build_ssl in this order:
23 # python.exe build_ssl.py Release x64
24 # python.exe build_ssl.py Release Win32
26 import os
, sys
, re
, shutil
28 # Find all "foo.exe" files on the PATH.
29 def find_all_on_path(filename
, extras
= None):
30 entries
= os
.environ
["PATH"].split(os
.pathsep
)
33 fname
= os
.path
.abspath(os
.path
.join(p
, filename
))
34 if os
.path
.isfile(fname
) and fname
not in ret
:
38 fname
= os
.path
.abspath(os
.path
.join(p
, filename
))
39 if os
.path
.isfile(fname
) and fname
not in ret
:
43 # Find a suitable Perl installation for OpenSSL.
44 # cygwin perl does *not* work. ActivePerl does.
45 # Being a Perl dummy, the simplest way I can check is if the "Win32" package
47 def find_working_perl(perls
):
49 fh
= os
.popen(perl
+ ' -e "use Win32;"')
55 print("Can not find a suitable PERL:")
57 print(" the following perl interpreters were found:")
60 print(" None of these versions appear suitable for building OpenSSL")
62 print(" NO perl interpreters were found on this machine at all!")
63 print(" Please install ActivePerl and ensure it appears on your path")
66 # Locate the best SSL directory given a few roots to look into.
67 def find_best_ssl_dir(sources
):
71 # note: do not abspath s; the build will fail if any
72 # higher up directory name has spaces in it.
73 fnames
= os
.listdir(s
)
77 fqn
= os
.path
.join(s
, fname
)
78 if os
.path
.isdir(fqn
) and fname
.startswith("openssl-"):
79 candidates
.append(fqn
)
80 # Now we have all the candidates, locate the best.
84 parts
= re
.split("[.-]", os
.path
.basename(c
))[1:]
85 # eg - openssl-0.9.7-beta1 - ignore all "beta" or any other qualifiers
88 if parts
> best_parts
:
91 if best_name
is not None:
92 print("Found an SSL directory at '%s'" % (best_name
,))
94 print("Could not find an SSL directory in '%s'" % (sources
,))
98 def create_makefile64(makefile
, m32
):
99 """Create and fix makefile for 64bit
101 Replace 32 with 64bit directories
103 if not os
.path
.isfile(m32
):
105 with
open(m32
) as fin
:
106 with
open(makefile
, 'w') as fout
:
108 line
= line
.replace("=tmp32", "=tmp64")
109 line
= line
.replace("=out32", "=out64")
110 line
= line
.replace("=inc32", "=inc64")
111 # force 64 bit machine
112 line
= line
.replace("MKLIB=lib", "MKLIB=lib /MACHINE:X64")
113 line
= line
.replace("LFLAGS=", "LFLAGS=/MACHINE:X64 ")
114 # don't link against the lib on 64bit systems
115 line
= line
.replace("bufferoverflowu.lib", "")
119 def fix_makefile(makefile
):
120 """Fix some stuff in all makefiles
122 if not os
.path
.isfile(makefile
):
124 with
open(makefile
) as fin
:
125 lines
= fin
.readlines()
126 with
open(makefile
, 'w') as fout
:
128 if line
.startswith("PERL="):
130 if line
.startswith("CP="):
132 if line
.startswith("MKDIR="):
133 line
= "MKDIR=mkdir\n"
134 if line
.startswith("CFLAG="):
136 for algo
in ("RC5", "MDC2", "IDEA"):
137 noalgo
= " -DOPENSSL_NO_%s" % algo
138 if noalgo
not in line
:
143 def run_configure(configure
, do_script
):
144 print("perl Configure "+configure
)
145 os
.system("perl Configure "+configure
)
150 build_all
= "-a" in sys
.argv
151 if sys
.argv
[1] == "Release":
153 elif sys
.argv
[1] == "Debug":
156 raise ValueError(str(sys
.argv
))
158 if sys
.argv
[2] == "Win32":
160 configure
= "VC-WIN32"
161 do_script
= "ms\\do_nasm"
162 makefile
="ms\\nt.mak"
164 elif sys
.argv
[2] == "x64":
166 configure
= "VC-WIN64A"
167 do_script
= "ms\\do_win64a"
168 makefile
= "ms\\nt64.mak"
169 m32
= makefile
.replace('64', '')
170 #os.environ["VSEXTCOMP_USECL"] = "MS_OPTERON"
172 raise ValueError(str(sys
.argv
))
177 # perl should be on the path, but we also look in "\perl" and "c:\\perl"
178 # as "well known" locations
179 perls
= find_all_on_path("perl.exe", ["\\perl\\bin", "C:\\perl\\bin"])
180 perl
= find_working_perl(perls
)
182 print("No Perl installation was found. Existing Makefiles are used.")
184 print("Found a working perl at '%s'" % (perl
,))
186 # Look for SSL 2 levels up from pcbuild - ie, same place zlib etc all live.
187 ssl_dir
= find_best_ssl_dir(("..\\..",))
194 # rebuild makefile when we do the role over from 32 to 64 build
195 if arch
== "amd64" and os
.path
.isfile(m32
) and not os
.path
.isfile(makefile
):
198 # If the ssl makefiles do not exist, we invoke Perl to generate them.
199 # Due to a bug in this script, the makefile sometimes ended up empty
200 # Force a regeneration if it is.
201 if not os
.path
.isfile(makefile
) or os
.path
.getsize(makefile
)==0:
203 print("Perl is required to build the makefiles!")
206 print("Creating the makefiles...")
208 # Put our working Perl at the front of our path
209 os
.environ
["PATH"] = os
.path
.dirname(perl
) + \
212 run_configure(configure
, do_script
)
214 print("OpenSSL debug builds aren't supported.")
215 #if arch=="x86" and debug:
216 # # the do_masm script in openssl doesn't generate a debug
217 # # build makefile so we generate it here:
218 # os.system("perl util\mk1mf.pl debug "+configure+" >"+makefile)
221 create_makefile64(makefile
, m32
)
222 fix_makefile(makefile
)
223 shutil
.copy(r
"crypto\buildinf.h", r
"crypto\buildinf_%s.h" % arch
)
224 shutil
.copy(r
"crypto\opensslconf.h", r
"crypto\opensslconf_%s.h" % arch
)
228 rc
= os
.system(r
"ml64 -c -Foms\uptable.obj ms\uptable.asm")
230 print("ml64 assembler has failed.")
233 shutil
.copy(r
"crypto\buildinf_%s.h" % arch
, r
"crypto\buildinf.h")
234 shutil
.copy(r
"crypto\opensslconf_%s.h" % arch
, r
"crypto\opensslconf.h")
236 #makeCommand = "nmake /nologo PERL=\"%s\" -f \"%s\"" %(perl, makefile)
237 makeCommand
= "nmake /nologo -f \"%s\"" % makefile
238 print("Executing ssl makefiles:", makeCommand
)
240 rc
= os
.system(makeCommand
)
242 print("Executing "+makefile
+" failed")
249 if __name__
=='__main__':