diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-03-07 16:42:22 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-03-07 16:53:49 +0100 |
commit | 6f0278e84d1943af57fec9feacd002e47033bd78 (patch) | |
tree | 4b9c0e9cd5224dc272c948f9cbb0c7785779a8e1 | |
parent | c6e7a1af4fbd4c5d611ff32e1f457601109ac524 (diff) |
libvorbis: don't use the -force_cpusubtype_ALL CFLAGS for iOS
This ensure that we end up with an ARMv7 statix library instead
of an ARM one when building for the Architecture.ARMv7 target
-rw-r--r-- | recipes/libvorbis.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/libvorbis.recipe b/recipes/libvorbis.recipe index ebddafc..67885ff 100644 --- a/recipes/libvorbis.recipe +++ b/recipes/libvorbis.recipe @@ -19,5 +19,5 @@ class Recipe(recipe.Recipe): # These optimizations make the linker think the object file is not # for the arm architecture shell.replace (os.path.join(self.build_dir, 'configure'), - {'-O4': '-O2'}) + {'-O4': '-O2', '-force_cpusubtype_ALL': ' '}) super(recipe.Recipe, self).configure() |