From: James Zern Date: Fri, 5 Apr 2013 18:56:54 +0000 (-0700) Subject: fix make test invocation for msvc win64 X-Git-Tag: v1.3.0~1153 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b4b28a5ea877a2d5c3b818f614b6b0d5205cea5;p=libvpx fix make test invocation for msvc win64 Change-Id: If5d4b7ffa67223ed72b53a6c9b9e42b4de5718f2 --- diff --git a/build/make/configure.sh b/build/make/configure.sh index 1ac303525..050ae57a7 100755 --- a/build/make/configure.sh +++ b/build/make/configure.sh @@ -1087,10 +1087,12 @@ EOF 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} diff --git a/libs.mk b/libs.mk index 872a16bae..2281bd059 100644 --- a/libs.mk +++ b/libs.mk @@ -436,7 +436,7 @@ test_libvpx.vcproj: $(LIBVPX_TEST_SRCS) 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