diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2013-09-23 12:53:06 +0200 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2013-09-28 20:53:26 +0200 |
commit | 1ab13c0e13a2eaf01a602772f72aff67c2cd1ba6 (patch) | |
tree | a19f5ccb3b73876d1aca9d26070c20123410b78a /recipes/x264.recipe | |
parent | c2b7682c807a192d9028224919cc6167b0820dc6 (diff) |
x264: Don't use clang integrated AS on iOS/ARM
Diffstat (limited to 'recipes/x264.recipe')
-rw-r--r-- | recipes/x264.recipe | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/recipes/x264.recipe b/recipes/x264.recipe index 9a94be7f..cd99d714 100644 --- a/recipes/x264.recipe +++ b/recipes/x264.recipe @@ -35,6 +35,7 @@ class Recipe(recipe.Recipe): self.configure_options += ' --disable-asm' if self.config.target_arch in [Architecture.ARM, Architecture.ARMv7]: self.new_env = {'AS': os.environ.get('GAS', '')} + self.new_env['AS'] += ' -no-integrated-as ' def post_install(self): libtool_la = LibtoolLibrary('x264', 125, None, None, self.config.libdir, |