summaryrefslogtreecommitdiff
path: root/recipes/gst-libav-1.0.recipe
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2015-02-18 16:20:34 +0100
committerEdward Hervey <bilboed@bilboed.com>2015-02-18 16:23:23 +0100
commita3bb5079362e530b044a624ff5179c313790d3cb (patch)
tree2ad3d9ea3678057176498f95ee7e621f5ed2a08a /recipes/gst-libav-1.0.recipe
parent5baf224824a5de725cff95c711cc444d5dcc0dce (diff)
recipes: Set maximum gst debug level to FIXME for nodebug releases
Gives us a better balance of information vs size of binaries
Diffstat (limited to 'recipes/gst-libav-1.0.recipe')
-rw-r--r--recipes/gst-libav-1.0.recipe2
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes/gst-libav-1.0.recipe b/recipes/gst-libav-1.0.recipe
index 3fa14407..23cb5a31 100644
--- a/recipes/gst-libav-1.0.recipe
+++ b/recipes/gst-libav-1.0.recipe
@@ -35,6 +35,8 @@ class Recipe(recipe.Recipe):
if self.config.target_arch == Architecture.X86:
# libav internally aligns stacks, while Android doesn't
self.configure_options += ' --with-libav-extra-configure="--extra-cflags=\'-mincoming-stack-boundary=4\'"'
+ if self.config.variants.nodebug:
+ self.append_env['CFLAGS'] += ' -DGST_LEVEL_MAX=GST_LEVEL_FIXME'
def configure(self):
super(recipe.Recipe, self).configure()