[vlc-devel] [PATCH] packagage: build.sh: add an armv7 build target
Steve Lhomme
robux4 at ycbcr.xyz
Wed Apr 8 16:08:40 CEST 2020
At least LLVM-MINGW64 can handle it.
---
extras/package/win32/build.sh | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/extras/package/win32/build.sh b/extras/package/win32/build.sh
index 9f1a009d26e..d3648f0423c 100755
--- a/extras/package/win32/build.sh
+++ b/extras/package/win32/build.sh
@@ -20,7 +20,7 @@ Build vlc in the current directory
OPTIONS:
-h Show some help
-r Release mode (default is debug)
- -a <arch> Use the specified arch (default: x86_64, possible i686, aarch64)
+ -a <arch> Use the specified arch (default: x86_64, possible i686, aarch64, armv7)
-p Use a Prebuilt contrib package (speeds up compilation)
-c Create a Prebuilt contrib package (rarely used)
-l Enable translations (can be slow)
@@ -90,6 +90,9 @@ case $ARCH in
aarch64)
SHORTARCH="winarm64"
;;
+ armv7)
+ SHORTARCH="winarm"
+ ;;
*)
usage
exit 1
--
2.17.1
More information about the vlc-devel
mailing list