| commit | 02869c2073ee519c14ded8e7af38ff2eea858f1a | [log] [tgz] |
|---|---|---|
| author | Johann <johannkoenig@google.com> | Mon Dec 04 08:50:09 2017 -0800 |
| committer | Johann Koenig <johannkoenig@google.com> | Tue Dec 05 16:33:05 2017 +0000 |
| tree | 585dff7752c236841b0120fe16e6c3771906e2b4 | |
| parent | 8a2c5cb8fe7ce5c302224b7c31d88f9c682ba98e [diff] [blame] |
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 Cherry picked from libvpx 460dbc0 Change-Id: I603981be6379732f5b8d5940294a79cef4b16c89
diff --git a/build/make/configure.sh b/build/make/configure.sh index b18173b..8ca2213 100644 --- a/build/make/configure.sh +++ b/build/make/configure.sh
@@ -1276,7 +1276,7 @@ EXE_SFX=.exe ;; win64) - add_asflags -f x64 + add_asflags -f win64 enabled debug && add_asflags -g cv8 EXE_SFX=.exe ;;