Commit 12dff8e3 authored by Max Kellermann's avatar Max Kellermann

python/build/openssl: use `no-asm` only on Windows

parent c4da87a0
......@@ -63,10 +63,13 @@ class OpenSSLProject(MakeProject):
'no-static-engine',
'no-async',
'no-tests',
'no-asm', # "asm" causes build failures on Windows
openssl_arch,
'--prefix=' + toolchain.install_prefix,
]
if toolchain.is_windows:
# workaround for build failures
configure.append('no-asm')
subprocess.check_call(configure, cwd=src, env=toolchain.env)
self.build_make(toolchain, src)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment