meson: specify that modules have unresolved apis

those are presented when they are loaded into e
This commit is contained in:
Marcel Hollerbach 2017-09-18 11:15:07 +02:00
parent 6a53fe8f93
commit 488fd0ad04
1 changed files with 4 additions and 2 deletions

View File

@ -128,7 +128,8 @@ foreach m: mods
name_prefix : '',
dependencies : [ module_deps, deps ],
install_dir : _dir_bin,
install : true
install : true,
link_args : '-Wl,--unresolved-symbols=ignore-in-object-files'
)
else
shared_module(m, src,
@ -137,7 +138,8 @@ foreach m: mods
name_prefix : '',
dependencies : [ module_deps, deps ],
install_dir : _dir_bin,
install : true
install : true,
link_args : '-Wl,--unresolved-symbols=ignore-in-object-files'
)
endif
endif