Skip to content
Snippets Groups Projects
Commit 25bfdb3a authored by Weijia Wang's avatar Weijia Wang
Browse files

echo-cancel: Fix macOS build


Signed-off-by: default avatarWeijia Wang <contact@weijia.wang>
Part-of: <!786>
parent 3e038c6d
No related branches found
No related tags found
Loading
Pipeline #839004 passed
......@@ -3,7 +3,8 @@
# even conditional ones).
# This library requires a symbol from module-echo-cancel, hence we need
# '-Wl,--unresolved-symbols=ignore-in-object-files' otherwise it fails
# '-Wl,--unresolved-symbols=ignore-in-object-files', or
# '-Wl,-undefined,dynamic_lookup' on macOS, otherwise it fails
# at link time.
add_languages('cpp')
......@@ -12,12 +13,18 @@ libwebrtc_util_sources = [
'webrtc.cc'
]
if host_machine.system() == 'darwin'
ignore_unresolved_symbols_link_args = ['-Wl,-undefined,dynamic_lookup']
else
ignore_unresolved_symbols_link_args = ['-Wl,--unresolved-symbols=ignore-in-object-files']
endif
libwebrtc_util = shared_library('webrtc-util',
libwebrtc_util_sources,
cpp_args : [pa_c_args, server_c_args],
include_directories : [configinc, topinc],
dependencies : [libpulse_dep, libpulsecommon_dep, libpulsecore_dep, libatomic_ops_dep, webrtc_dep, libintl_dep],
link_args : [nodelete_link_args, '-Wl,--unresolved-symbols=ignore-in-object-files'],
link_args : [nodelete_link_args, ignore_unresolved_symbols_link_args],
install : true,
install_rpath : privlibdir,
install_dir : modlibexecdir,
......
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