Skip to content

Commit fa74b3e

Browse files
jkunkeeBethGriggs
authored andcommittedApr 16, 2019
win,build: scope NASM warning to only x64 and x86
PR-URL: #25995 Reviewed-By: João Reis <reis@janeasystems.com>
1 parent 7e89684 commit fa74b3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎configure.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ def get_gas_version(cc):
742742
# quite prepared to go that far yet.
743743
def check_compiler(o):
744744
if sys.platform == 'win32':
745-
if not options.openssl_no_asm:
745+
if not options.openssl_no_asm and options.dest_cpu in ('x86', 'x64'):
746746
nasm_version = get_nasm_version('nasm')
747747
o['variables']['nasm_version'] = nasm_version
748748
if nasm_version == 0:

0 commit comments

Comments
 (0)