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

Steve Lhomme git at videolan.org
Thu Jun 18 14:54:29 CEST 2020


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

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

At least LLVM-MINGW64 can handle it.

(cherry picked from commit beb2998d6f3ea2155121b8e07c3d698551f6f310)
Signed-off-by: Steve Lhomme <robux4 at ycbcr.xyz>

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

 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 893a4fa050..a46f48f5c9 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