diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-04-23 13:19:27 +0200 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-04-23 13:20:08 +0200 |
commit | b863207a4349c720db6c0699f40077a23643cbff (patch) | |
tree | 8e32e21cba3460729228477437b8f2c14038c707 | |
parent | b56b395d2ee7316a7928d5fe3ca3f86914328a7a (diff) |
x264: fix build in ios arm
-rw-r--r-- | recipes/x264.recipe | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes/x264.recipe b/recipes/x264.recipe index d6ca72c..b4137c0 100644 --- a/recipes/x264.recipe +++ b/recipes/x264.recipe @@ -27,3 +27,5 @@ class Recipe(recipe.Recipe): if self.config.target_platform == Platform.ANDROID: if self.config.target_arch == Architecture.ARM: self.configure_options += ' --disable-asm' + if self.config.target_arch in [Architecture.ARM, Architecture.ARMv7]: + self.new_env = {'AS': os.environ.get('GAS', '')} |