Merge pull request #24449 from mtorromeo/patch-1

Do not build with boringssl ASM when using system openssl
pull/24499/head
Richard Belleville 4 years ago committed by GitHub
commit fbffae6903
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      setup.py

@ -289,7 +289,7 @@ DEFINE_MACROS = (('_WIN32_WINNT', 0x600),)
asm_files = []
asm_key = ''
if BUILD_WITH_BORING_SSL_ASM:
if BUILD_WITH_BORING_SSL_ASM and not BUILD_WITH_SYSTEM_OPENSSL:
LINUX_X86_64 = 'linux-x86_64'
LINUX_ARM = 'linux-arm'
if LINUX_X86_64 == util.get_platform():

Loading…
Cancel
Save