Christian Heimes wrote:
> Amaury Forgeot d'Arc wrote:
> > However, I am surprised by this comment:
> >> # Run build_ssl in this order:
> >> # python.exe build_ssl.py Release x64
> >> # python.exe build_ssl.py Release Win32
> > Why so? does the Win32 build rely on some file generated by x64?
>
> ope
Amaury Forgeot d'Arc wrote:
> However, I am surprised by this comment:
>> # Run build_ssl in this order:
>> # python.exe build_ssl.py Release x64
>> # python.exe build_ssl.py Release Win32
> Why so? does the Win32 build rely on some file generated by x64?
openssl doesn't support separate makefiles
Christian Heimes wrote:
> I've modified the build_ssl.py script and added pre-generated makefiles
> and assembly files to openssl today. From now on you can build Python
> w/o Perl. Perl is only required when somebody needs to update openssl.
Nice! I will try this this afternoon.
However, I am su