diff options
author | Matthew Waters <matthew@centricular.com> | 2016-02-24 10:36:54 +1100 |
---|---|---|
committer | Matthew Waters <matthew@centricular.com> | 2016-02-24 21:22:00 +1100 |
commit | d2b9b56abe524776dd247af1083dfd5fcbf716fc (patch) | |
tree | 618bab039fe7169052ee8475becee1433cc691f3 /recipes/taglib.recipe | |
parent | a9c2156d482f4f1271fe5a9be0207af184a34762 (diff) |
taglib: explicitly enable -frtti on android
The default now is to disable it in line with the NDK build system
https://bugzilla.gnome.org/show_bug.cgi?id=762526
Diffstat (limited to 'recipes/taglib.recipe')
-rw-r--r-- | recipes/taglib.recipe | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/recipes/taglib.recipe b/recipes/taglib.recipe index 498a4122..3986528f 100644 --- a/recipes/taglib.recipe +++ b/recipes/taglib.recipe @@ -30,6 +30,7 @@ class Recipe(recipe.Recipe): if self.config.target_platform == Platform.ANDROID: # configure for android self.configure_options += ' -DANDROID_NDK=1 ' + self.append_env['CXXFLAGS'] = " -frtti " self.configure_options += ' -DZLIB_ROOT=%s ' % self.config.prefix def install(self): |