]> granicus.if.org Git - libvpx/commitdiff
pass 'win64' instead of 'x64' to the assembler
authorJohann <johannkoenig@google.com>
Fri, 1 Dec 2017 18:58:44 +0000 (10:58 -0800)
committerJohann <johannkoenig@google.com>
Fri, 1 Dec 2017 18:58:54 +0000 (10:58 -0800)
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

build/make/configure.sh

index 5f0f5247be5adca906fba962e8c6f5c9fa43a745..b4a4fc4e1c8a55ead839225ff9af9e780767ad28 100644 (file)
@@ -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
           ;;