summaryrefslogtreecommitdiff
path: root/configure.py
diff options
context:
space:
mode:
authorJon Kunkee <jkunkee@microsoft.com>2018-12-18 14:36:33 -0800
committerJoão Reis <reis@janeasystems.com>2019-03-04 12:25:26 +0000
commitb9aac6766ec265738f949c8487272befc731afe5 (patch)
tree587910540bf5a7ba882ad027e5c35f80735b97c9 /configure.py
parent3796a69e00df046a0415381fdb331a08c0a5b122 (diff)
downloadandroid-node-v8-b9aac6766ec265738f949c8487272befc731afe5.tar.gz
android-node-v8-b9aac6766ec265738f949c8487272befc731afe5.tar.bz2
android-node-v8-b9aac6766ec265738f949c8487272befc731afe5.zip
win,build: scope NASM warning to only x64 and x86
PR-URL: https://github.com/nodejs/node/pull/25995 Reviewed-By: João Reis <reis@janeasystems.com>
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index cd74f23a6c..9b659deb5c 100755
--- a/configure.py
+++ b/configure.py
@@ -725,7 +725,7 @@ def get_gas_version(cc):
# quite prepared to go that far yet.
def check_compiler(o):
if sys.platform == 'win32':
- if not options.openssl_no_asm:
+ if not options.openssl_no_asm and options.dest_cpu in ('x86', 'x64'):
nasm_version = get_nasm_version('nasm')
o['variables']['nasm_version'] = nasm_version
if nasm_version == 0: