summaryrefslogtreecommitdiff
path: root/configure.py
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2018-11-09 11:55:37 +0100
committerDaniel Bevenius <daniel.bevenius@gmail.com>2018-11-12 07:29:21 +0100
commit4684de6423ee48635c6d4fc3e990af38618aaf0f (patch)
tree62fe0297c2432d94202033be001b8a845f5fd937 /configure.py
parenta8847aa5e009e4c487a0d895cfeaea0080e33a29 (diff)
downloadandroid-node-v8-4684de6423ee48635c6d4fc3e990af38618aaf0f.tar.gz
android-node-v8-4684de6423ee48635c6d4fc3e990af38618aaf0f.tar.bz2
android-node-v8-4684de6423ee48635c6d4fc3e990af38618aaf0f.zip
build: disable openssl asm on arm64 for now
There is reason to believe the generated assembly isn't working correctly so let's disable it for now pending further investigation. PR-URL: https://github.com/nodejs/node/pull/24270 Refs: https://github.com/nodejs/node/issues/23913 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index 0df8e12bf3..065e31fd9c 100755
--- a/configure.py
+++ b/configure.py
@@ -1183,9 +1183,11 @@ def configure_openssl(o):
variables = o['variables']
variables['node_use_openssl'] = b(not options.without_ssl)
variables['node_shared_openssl'] = b(options.shared_openssl)
- variables['openssl_no_asm'] = 1 if options.openssl_no_asm else 0
variables['openssl_fips'] = ''
+ if options.openssl_no_asm:
+ variables['openssl_no_asm'] = 1
+
if options.without_ssl:
def without_ssl_error(option):
error('--without-ssl is incompatible with %s' % option)