diff options
author | Arun Raghavan <git@arunraghavan.net> | 2015-02-20 16:45:08 +0530 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2015-02-22 10:42:36 +0200 |
commit | 5c0e279abaff50edcdde129e8c160f0c7e630ee4 (patch) | |
tree | 53dca0dd635286f029281222dc420b6177805cc4 /recipes/libvpx.recipe | |
parent | 3a016d15f37c93cc5f737d058c17133162444f43 (diff) |
Revert "libvpx.recipe: Use only -O1 with llvm/clang"
This reverts commit 86df1d951783aad7c83ff6cece1020cc6a712069. Fixes in
git after v.1.3.0 should render forcing -O1 unnecessary.
Diffstat (limited to 'recipes/libvpx.recipe')
-rw-r--r-- | recipes/libvpx.recipe | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/recipes/libvpx.recipe b/recipes/libvpx.recipe index f9a6ed1b..a9d29b81 100644 --- a/recipes/libvpx.recipe +++ b/recipes/libvpx.recipe @@ -51,12 +51,6 @@ class Recipe(recipe.Recipe): elif self.config.target_arch == Architecture.ARM64: arch = 'arm64' - if self.config.target_platform in (Platform.DARWIN, Platform.IOS): - # -O1 is needed while building with llvm/clang because of: - # https://code.google.com/p/webm/issues/detail?id=603 - # TODO: Re-test and remove when a new libvpx release is made - self.configure_options += " --extra-cflags='-O1' " - self.new_env['LD'] = os.environ.get('CC', 'gcc') if self.config.target_platform == Platform.DARWIN: platform = 'darwin12' |