summaryrefslogtreecommitdiff
path: root/recipes
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2020-11-25 15:17:05 +0000
committerTim-Philipp Müller <tim@centricular.com>2021-01-13 01:06:22 +0000
commit7171fcd37d0ad5824186269a565d5529d24a7f68 (patch)
tree000a93b3b8e75c0d003b32f602f2d9da8b679b5c /recipes
parentabf3cfb0a48fc94f8c616e3dade8b509ca6d062c (diff)
x264: add support for macOS ARM64
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/661>
Diffstat (limited to 'recipes')
-rw-r--r--recipes/x264.recipe2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/x264.recipe b/recipes/x264.recipe
index ee691870..2eaae962 100644
--- a/recipes/x264.recipe
+++ b/recipes/x264.recipe
@@ -37,7 +37,7 @@ class Recipe(recipe.Recipe):
AS = [cc]
else:
AS = []
- if self.config.target_platform == Platform.IOS:
+ if self.config.target_platform in [Platform.IOS, Platform.DARWIN]:
if Architecture.is_arm(self.config.target_arch):
# x264 ships its own gas-preprocessor.pl
AS = ['tools/' + self.get_env('GAS')]