[vlc-commits] contrib: Map armv*-* triplets to ARCH=arm
    Martin Storsjö 
    git at videolan.org
       
    Fri Jan  5 21:42:55 CET 2018
    
    
  
vlc | branch: master | Martin Storsjö <martin at martin.st> | Tue Dec 19 11:11:06 2017 +0200| [99acb87cc903849d915826cb4d2dfde366960f89] | committer: Martin Storsjö
contrib: Map armv*-* triplets to ARCH=arm
For armv7 mingw setups, the triplet currently used is armv7-w64-mingw32.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=99acb87cc903849d915826cb4d2dfde366960f89
---
 contrib/src/get-arch.sh | 3 +++
 1 file changed, 3 insertions(+)
diff --git a/contrib/src/get-arch.sh b/contrib/src/get-arch.sh
index 801d6b23c5..3431779811 100755
--- a/contrib/src/get-arch.sh
+++ b/contrib/src/get-arch.sh
@@ -10,6 +10,9 @@ case "$HOST" in
 	amd64-*)
 		ARCH="x86_64"
 		;;
+	armv*-*)
+		ARCH="arm"
+		;;
 	i[3456]86-*|x86-*)
 		ARCH="i386"
 		;;
    
    
More information about the vlc-commits
mailing list