summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMartin Storsjo <martin@martin.st>2013-05-18 23:32:49 +0300
committerMartin Storsjo <martin@martin.st>2013-05-22 02:08:25 +0300
commitad484fc6be3b11448c67787786e1fd2f22ee18eb (patch)
tree51a07db233dfc747bb439574b1ffbb59fe3c37b2 /configure
parentfba3110b09d5cea055a74a9b755be95d7ceb5147 (diff)
downloadlibvpx-ad484fc6be3b11448c67787786e1fd2f22ee18eb.tar
libvpx-ad484fc6be3b11448c67787786e1fd2f22ee18eb.tar.gz
libvpx-ad484fc6be3b11448c67787786e1fd2f22ee18eb.tar.bz2
libvpx-ad484fc6be3b11448c67787786e1fd2f22ee18eb.zip
Add support for armv7-win32-vs11
The arm assembly files are named .s after conversion, to reuse as much of the existing makefile infrastructure for conversion to gas format as possible. Within the generated visual studio project, only the converted assembly sources are available, which might not be optimal for actually developing it, but is acceptable for just building the library. Multithreading is disabled since the traditional win32 threading functions aren't available on WinRT/Windows Phone 8. Building of vpx itself and the examples succeed, while building the tests fail due to them using functions not available in the windows store/windows phone API subsets - therefore the unit tests are disabled. This works for building in Visual Studio Express 2012 for Windows Phone, while Visual Studio Express 2012 for Windows 8 (for "Windows Store" apps) seems to reject the vcxproj files due to not supporting "classic style native application or managed projects". The built static library should be compatible with that platform though. Change-Id: Idcd7eca60bfaaaeb09392a9cd7a02e4a670e3b30
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure b/configure
index eda16e634..3854ae9ea 100755
--- a/configure
+++ b/configure
@@ -98,6 +98,7 @@ all_platforms="${all_platforms} armv7-darwin-gcc" #neon Cortex-A8
all_platforms="${all_platforms} armv7-linux-rvct" #neon Cortex-A8
all_platforms="${all_platforms} armv7-linux-gcc" #neon Cortex-A8
all_platforms="${all_platforms} armv7-none-rvct" #neon Cortex-A8
+all_platforms="${all_platforms} armv7-win32-vs11"
all_platforms="${all_platforms} mips32-linux-gcc"
all_platforms="${all_platforms} ppc32-darwin8-gcc"
all_platforms="${all_platforms} ppc32-darwin9-gcc"