From fb1c0626268e7bb4651795bf5651c4c7ea1306d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Cerveau?= Date: Tue, 19 Oct 2021 12:32:32 +0200 Subject: [PATCH] gstreamer-full: warn if version-script not available Instead of error out, warn user that the platform does not support the version script. Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 0ff3e479da..174e71695f 100644 --- a/meson.build +++ b/meson.build @@ -328,7 +328,7 @@ if get_option('default_library') == 'static' elif cc.get_id() == 'msvc' warning('FIXME: Provide a def file to publish the public symbols') else - error('Failed to link with version script (' + symbol_map + '), check logs for details') + warning('FIXME: Linker does not support the supplied version script (' + symbol_map + '), please disable the "gst-full-version-script" option') endif endif