summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorRafaël Carré <funman@videolan.org>2011-11-07 19:45:34 -0500
committerRafaël Carré <funman@videolan.org>2011-11-07 19:49:22 -0500
commit75340193f720eceea5f52b00fcda83aef651b6e8 (patch)
tree657421c3d614e224ceef2e1edb06d17afcbce040 /build
parentf89ea3432fd213f0e7c65eceaf6553cb3191306d (diff)
downloadlibvpx-75340193f720eceea5f52b00fcda83aef651b6e8.tar
libvpx-75340193f720eceea5f52b00fcda83aef651b6e8.tar.gz
libvpx-75340193f720eceea5f52b00fcda83aef651b6e8.tar.bz2
libvpx-75340193f720eceea5f52b00fcda83aef651b6e8.zip
win64: use -f x64 in asflags instead of -f win64
Change-Id: Id1be1a91c7f0fd286c403489ff447837029ba17f
Diffstat (limited to 'build')
-rwxr-xr-xbuild/make/configure.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/build/make/configure.sh b/build/make/configure.sh
index 1bb50af6d..1279f781a 100755
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -901,8 +901,12 @@ process_common_toolchain() {
[ "${AS##*/}" = nasm ] && add_asflags -Ox
AS_SFX=.asm
case ${tgt_os} in
- win*)
- add_asflags -f win${bits}
+ win32)
+ add_asflags -f win32
+ enabled debug && add_asflags -g cv8
+ ;;
+ win64)
+ add_asflags -f x64
enabled debug && add_asflags -g cv8
;;
linux*|solaris*)