summaryrefslogtreecommitdiff
path: root/build/make/gen_msvs_proj.sh
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2014-08-22 15:25:44 -0700
committerJames Zern <jzern@google.com>2014-08-22 15:28:40 -0700
commitc5795d8f05a4dee65d8a649f9fb17df8fbb2fbbd (patch)
tree73d30f6fa6cbb9dfcf7f5f2976926779e629615e /build/make/gen_msvs_proj.sh
parent3c810ef79cfebdfb9512811e4424acf360a4dea4 (diff)
downloadlibvpx-c5795d8f05a4dee65d8a649f9fb17df8fbb2fbbd.tar
libvpx-c5795d8f05a4dee65d8a649f9fb17df8fbb2fbbd.tar.gz
libvpx-c5795d8f05a4dee65d8a649f9fb17df8fbb2fbbd.tar.bz2
libvpx-c5795d8f05a4dee65d8a649f9fb17df8fbb2fbbd.zip
gen_msvs_(vcx)proj.sh: set yasm format explicitly
use win32/win64 instead of $(PlatformName) (Win32/x64) for compatibility with yasm 1.3.0. both format types were available since at least 0.8.0 BUG=843 Change-Id: I7917620490d0663b118ff08b96d1e5dbccba3703
Diffstat (limited to 'build/make/gen_msvs_proj.sh')
-rwxr-xr-xbuild/make/gen_msvs_proj.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/build/make/gen_msvs_proj.sh b/build/make/gen_msvs_proj.sh
index 3653309ed..790722593 100755
--- a/build/make/gen_msvs_proj.sh
+++ b/build/make/gen_msvs_proj.sh
@@ -245,13 +245,13 @@ esac
case "$target" in
x86_64*)
platforms[0]="x64"
- asm_Debug_cmdline="yasm -Xvc -g cv8 -f \$(PlatformName) ${yasmincs} &quot;\$(InputPath)&quot;"
- asm_Release_cmdline="yasm -Xvc -f \$(PlatformName) ${yasmincs} &quot;\$(InputPath)&quot;"
+ asm_Debug_cmdline="yasm -Xvc -g cv8 -f win64 ${yasmincs} &quot;\$(InputPath)&quot;"
+ asm_Release_cmdline="yasm -Xvc -f win64 ${yasmincs} &quot;\$(InputPath)&quot;"
;;
x86*)
platforms[0]="Win32"
- asm_Debug_cmdline="yasm -Xvc -g cv8 -f \$(PlatformName) ${yasmincs} &quot;\$(InputPath)&quot;"
- asm_Release_cmdline="yasm -Xvc -f \$(PlatformName) ${yasmincs} &quot;\$(InputPath)&quot;"
+ asm_Debug_cmdline="yasm -Xvc -g cv8 -f win32 ${yasmincs} &quot;\$(InputPath)&quot;"
+ asm_Release_cmdline="yasm -Xvc -f win32 ${yasmincs} &quot;\$(InputPath)&quot;"
;;
*) die "Unsupported target $target!"
;;