[vlc-commits] contrib: vpx: iOS: Handle aarch64 as arm64 for VPX_OS
Soomin Lee
git at videolan.org
Wed Dec 5 10:00:18 CET 2018
vlc | branch: master | Soomin Lee <bubu at mikan.io> | Wed Dec 5 09:53:40 2018 +0100| [9bc4318cbf22c7c33295fe24ab863992f5c7ad27] | committer: Hugo Beauzée-Luyssen
contrib: vpx: iOS: Handle aarch64 as arm64 for VPX_OS
As stated in the libvpx README[1], for aarch64, darwin11 doesn't exist and leads to:
`Unrecognized toolchain 'arm64-darwin11-gcc'`
See failure on jenkins[2].
[1]: https://github.com/webmproject/libvpx/blob/master/README
[2]: https://jenkins.videolan.org/job/VLCKit/job/vlc-nightly-iOS-MobileVLCKit/900/consoleFull
Signed-off-by: Hugo Beauzée-Luyssen <hugo at beauzee.fr>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9bc4318cbf22c7c33295fe24ab863992f5c7ad27
---
contrib/src/vpx/rules.mak | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/src/vpx/rules.mak b/contrib/src/vpx/rules.mak
index 6fa2dd545e..7b405b956f 100644
--- a/contrib/src/vpx/rules.mak
+++ b/contrib/src/vpx/rules.mak
@@ -75,7 +75,7 @@ else ifdef HAVE_MACOSX
VPX_OS := darwin10
VPX_CROSS :=
else ifdef HAVE_IOS
-ifeq ($(ARCH),arm)
+ifeq ($(ARCH),$(filter $(ARCH), arm aarch64))
VPX_OS := darwin
else
VPX_OS := darwin11
More information about the vlc-commits
mailing list