Skip to content

Commit

Permalink
win,build: scope NASM warning to only x64 and x86
Browse files Browse the repository at this point in the history
PR-URL: nodejs#25995
Reviewed-By: João Reis <[email protected]>
  • Loading branch information
jkunkee authored and joaocgreis committed Mar 4, 2019
1 parent 3796a69 commit b9aac67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit b9aac67

Please sign in to comment.