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 <[email protected]>
  • Loading branch information
jkunkee authored and BridgeAR committed Mar 12, 2019
1 parent 7e4592e commit e8f4096
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 @@ -757,7 +757,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 e8f4096

Please sign in to comment.