[vlc-commits] win32: build.sh: Accept aarch64 as a platform
Hugo Beauzée-Luyssen
git at videolan.org
Thu Jun 18 14:54:10 CEST 2020
vlc/vlc-3.0 | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Wed Dec 12 16:19:49 2018 +0100| [6bf8365b95f97752eef49ea981a4adcbb7357143] | committer: Steve Lhomme
win32: build.sh: Accept aarch64 as a platform
(cherry picked from commit 3bb568bea7c6a733aecfdc1815b474751f57d2d0)
Signed-off-by: Steve Lhomme <robux4 at ycbcr.xyz>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=6bf8365b95f97752eef49ea981a4adcbb7357143
---
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 5bf2557d35..cdcef85ea2 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)
+ -a <arch> Use the specified arch (default: x86_64, possible i686, aarch64)
-p Use a Prebuilt contrib package (speeds up compilation)
-c Create a Prebuilt contrib package (rarely used)
-l Enable translations (can be slow)
@@ -79,6 +79,9 @@ case $ARCH in
i686)
SHORTARCH="win32"
;;
+ aarch64)
+ SHORTARCH="winarm64"
+ ;;
*)
usage
exit 1
More information about the vlc-commits
mailing list