mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
meson: use -Wl,-Bsymbolic-functions where supported
Just like the autotools build.
This commit is contained in:
parent
90d006141a
commit
858a9d2054
1 changed files with 5 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
project('gst-rtsp-server', 'c',
|
||||
version : '1.15.0.1',
|
||||
meson_version : '>= 0.33.0',
|
||||
meson_version : '>= 0.46.0',
|
||||
default_options : ['warning_level=1', 'buildtype=debugoptimized'])
|
||||
|
||||
gst_version = meson.project_version()
|
||||
|
@ -27,6 +27,10 @@ plugins_install_dir = '@0@/gstreamer-1.0'.format(get_option('libdir'))
|
|||
|
||||
cc = meson.get_compiler('c')
|
||||
|
||||
if cc.has_link_argument('-Wl,-Bsymbolic-functions')
|
||||
add_project_link_arguments('-Wl,-Bsymbolic-functions', language : 'c')
|
||||
endif
|
||||
|
||||
# Symbol visibility
|
||||
if cc.has_argument('-fvisibility=hidden')
|
||||
add_project_arguments('-fvisibility=hidden', language: 'c')
|
||||
|
|
Loading…
Reference in a new issue