[vlc-commits] package/win32: build.sh: add an armv7 build target

Steve Lhomme git at videolan.org
Thu Apr 9 07:52:08 CEST 2020


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Fri Apr  3 11:10:02 2020 +0200| [beb2998d6f3ea2155121b8e07c3d698551f6f310] | committer: Steve Lhomme

package/win32: build.sh: add an armv7 build target

At least LLVM-MINGW64 can handle it.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=beb2998d6f3ea2155121b8e07c3d698551f6f310
---

 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 9f1a009d26..d3648f0423 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



More information about the vlc-commits mailing list