From fa74b3eb03be4e93c25526de3c9043990c6d5326 Mon Sep 17 00:00:00 2001 From: Jon Kunkee Date: Tue, 18 Dec 2018 14:36:33 -0800 Subject: [PATCH] win,build: scope NASM warning to only x64 and x86 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/25995 Reviewed-By: João Reis --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.py b/configure.py index 0ad986ab82e29f..586dfdb2817013 100755 --- a/configure.py +++ b/configure.py @@ -742,7 +742,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: