summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2017-12-01 10:58:44 -0800
committerJohann <johannkoenig@google.com>2017-12-01 10:58:54 -0800
commit460dbc01b538076b9e2a8b6f49955c98d6f668af (patch)
tree94e9f74b8c42543b6d85d908c13e7cf709c8c600 /build
parent8099220e6c5e2cc8c857f85e1429d857c87a6f2a (diff)
downloadlibvpx-460dbc01b538076b9e2a8b6f49955c98d6f668af.tar
libvpx-460dbc01b538076b9e2a8b6f49955c98d6f668af.tar.gz
libvpx-460dbc01b538076b9e2a8b6f49955c98d6f668af.tar.bz2
libvpx-460dbc01b538076b9e2a8b6f49955c98d6f668af.zip
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
Diffstat (limited to 'build')
-rw-r--r--build/make/configure.sh2
1 files changed, 1 insertions, 1 deletions
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
;;