Skip to content

Commit e8f4096

Browse files
jkunkeeBridgeAR
authored andcommitted
win,build: scope NASM warning to only x64 and x86
PR-URL: #25995 Reviewed-By: João Reis <[email protected]>
1 parent 7e4592e commit e8f4096

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: configure.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ def get_gas_version(cc):
757757
# quite prepared to go that far yet.
758758
def check_compiler(o):
759759
if sys.platform == 'win32':
760-
if not options.openssl_no_asm:
760+
if not options.openssl_no_asm and options.dest_cpu in ('x86', 'x64'):
761761
nasm_version = get_nasm_version('nasm')
762762
o['variables']['nasm_version'] = nasm_version
763763
if nasm_version == 0:

0 commit comments

Comments
 (0)