Skip to content
Snippets Groups Projects
Commit a8338d78 authored by Nirbheek Chauhan's avatar Nirbheek Chauhan :ant:
Browse files

gst-plugins-base: Disable werror on Windows

Causes the linker to hang with 100% CPU.
parent d70e396f
No related branches found
No related tags found
No related merge requests found
......@@ -241,3 +241,9 @@ class Recipe(custom.GStreamer):
if self.config.target_platform in (Platform.ANDROID, Platform.IOS):
self.meson_options['tremor'] = 'enabled'
# Our ancient toolchain manages to hang while linking one of the tests
# if this is enabled. XXX: Revisit when the toolchain is updated:
# https://gitlab.freedesktop.org/gstreamer/cerbero/merge_requests/69
if self.config.target_platform == Platform.WINDOWS:
self.meson_options['werror'] = 'false'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment