From: Johann Date: Fri, 1 Dec 2017 18:58:44 +0000 (-0800) Subject: pass 'win64' instead of 'x64' to the assembler X-Git-Tag: v1.7.0~37^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=460dbc01b538076b9e2a8b6f49955c98d6f668af;p=libvpx pass 'win64' instead of 'x64' to the assembler nasm does not accept x64 yasm has accepted (and appears to prefer) win64 at least as far back as 1.0.0: http://yasm.tortall.net/releases/Release1.0.0.html Change-Id: Ied881b1df0570da256b1bd7e131e7817e47f768f --- diff --git a/build/make/configure.sh b/build/make/configure.sh index 5f0f5247b..b4a4fc4e1 100644 --- a/build/make/configure.sh +++ b/build/make/configure.sh @@ -1345,7 +1345,7 @@ EOF EXE_SFX=.exe ;; win64) - add_asflags -f x64 + add_asflags -f win64 enabled debug && add_asflags -g cv8 EXE_SFX=.exe ;;