summaryrefslogtreecommitdiff
path: root/recipes/openh264.recipe
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2019-07-24 23:16:05 +0200
committerAndoni Morales Alastruey <ylatuya@gmail.com>2019-07-24 23:19:18 +0200
commit67298940eda064da58b9e13c8ca7e149057610d1 (patch)
tree30ada99e5ee7fe59ed99d6bb5dbfce7cf12c5dcd /recipes/openh264.recipe
parent93b734b96af39b50dde90926f0c96f6cee4e60e3 (diff)
openh264: use libc++ instead of the deprecated lstdc++
Diffstat (limited to 'recipes/openh264.recipe')
-rw-r--r--recipes/openh264.recipe2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/openh264.recipe b/recipes/openh264.recipe
index 7371d7ea..4a3697d6 100644
--- a/recipes/openh264.recipe
+++ b/recipes/openh264.recipe
@@ -104,7 +104,7 @@ class Recipe(recipe.Recipe):
if self.config.target_platform == Platform.IOS:
dependency_libs += ['-lc++']
elif self.config.target_platform == Platform.DARWIN:
- dependency_libs += ['-lstdc++']
+ dependency_libs += ['-lc++']
elif self.config.target_platform == Platform.ANDROID:
dependency_libs += ['gnustl', '-lm']
elif self.config.target_platform in [Platform.WINDOWS, Platform.LINUX]: