mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Fix linking unit-tests with lld
ld.lld: error: libs/pbd/libpbd.so: undefined reference to dlopen [--no-allow-shlib-undefined]
This commit is contained in:
parent
69e5fd1c99
commit
a1d53c1d2e
1 changed files with 1 additions and 1 deletions
|
|
@ -221,4 +221,4 @@ def build(bld):
|
|||
testobj.name = 'libpbd-tests'
|
||||
testobj.defines = [ 'PACKAGE="' + I18N_PACKAGE + '"' ]
|
||||
if sys.platform != 'darwin' and bld.env['build_target'] != 'mingw':
|
||||
testobj.lib = ['rt']
|
||||
testobj.lib = ['rt', 'dl']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue