Skip to content
Snippets Groups Projects
Commit fca97f51 authored by Sebastian Dröge's avatar Sebastian Dröge :tea:
Browse files

x264: Fix compilation on Android/AArch64

parent 9507cd7f
No related merge requests found
......@@ -39,7 +39,7 @@ class Recipe(recipe.Recipe):
if self.config.target_arch == Architecture.ARM:
# FIXME : Is disabling asm on ARM (< v7) still needed ?
enable_asm = False
if self.config.target_arch == Architecture.ARMv7:
elif Architecture.is_arm(self.config.target_arch):
self.new_env = {'AS': os.environ.get('CC', '')}
if self.config.target_platform == Platform.IOS:
if Architecture.is_arm(self.config.target_arch):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment