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: #25995
Reviewed-By: João Reis <reis@janeasystems.com>
  • Loading branch information
jkunkee authored and BethGriggs committed Apr 16, 2019
1 parent 7e89684 commit fa74b3e
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 @@ -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:
Expand Down

0 comments on commit fa74b3e

Please sign in to comment.