ref: 8b4b28a5ea877a2d5c3b818f614b6b0d5205cea5
parent: c4195e0eb8671fcbc88be59c117e74dfe0dac402
author: James Zern <jzern@google.com>
date: Fri Apr 5 07:56:54 EDT 2013
fix make test invocation for msvc win64 Change-Id: If5d4b7ffa67223ed72b53a6c9b9e42b4de5718f2
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -1087,10 +1087,12 @@
win32)
add_asflags -f win32
enabled debug && add_asflags -g cv8
+ EXE_SFX=.exe
;;
win64)
add_asflags -f x64
enabled debug && add_asflags -g cv8
+ EXE_SFX=.exe
;;
linux*|solaris*|android*)
add_asflags -f elf${bits}
--- a/libs.mk
+++ b/libs.mk
@@ -436,7 +436,7 @@
PROJECTS-$(CONFIG_MSVS) += test_libvpx.vcproj
test:: testdata
- @set -e; for t in $(addprefix Win32/Release/,$(notdir $(LIBVPX_TEST_BINS:.cc=.exe))); do $$t; done
+ @set -e; for t in $(addprefix $(TGT_OS:win64=x64)/Release/,$(notdir $(LIBVPX_TEST_BINS:.cc=.exe))); do $$t; done
endif
else
--
⑨