Solaris doesn't ship static libraries, so the test can't rely on libz.a existing on Solaris. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>pull/5917/head
parent
692fade34e
commit
0faaf9720f
1 changed files with 19 additions and 5 deletions
@ -1,22 +1,36 @@ |
||||
project('static dynamic', 'c') |
||||
|
||||
# Solaris does not ship static libraries |
||||
if host_machine.system() == 'sunos' |
||||
has_static = false |
||||
else |
||||
has_static = true |
||||
endif |
||||
|
||||
cc = meson.get_compiler('c') |
||||
|
||||
z_default = cc.find_library('z') |
||||
z_static = cc.find_library('z', static: true) |
||||
if has_static |
||||
z_static = cc.find_library('z', static: true) |
||||
endif |
||||
z_dynamic = cc.find_library('z', static: false) |
||||
|
||||
exe_default = executable('main_default', 'main.c', dependencies: [z_default]) |
||||
exe_static = executable('main_static', 'main.c', dependencies: [z_static]) |
||||
if has_static |
||||
exe_static = executable('main_static', 'main.c', dependencies: [z_static]) |
||||
endif |
||||
exe_dynamic = executable('main_dynamic', 'main.c', dependencies: [z_dynamic]) |
||||
|
||||
test('test default', exe_default) |
||||
test('test static', exe_static) |
||||
if has_static |
||||
test('test static', exe_static) |
||||
endif |
||||
test('test dynamic', exe_dynamic) |
||||
|
||||
test('verify static linking', find_program('verify_static.py'), |
||||
if has_static |
||||
test('verify static linking', find_program('verify_static.py'), |
||||
args: ['--platform=' + host_machine.system(), exe_static.full_path()]) |
||||
endif |
||||
test('verify dynamic linking', find_program('verify_static.py'), |
||||
args: ['--platform=' + host_machine.system(), exe_dynamic.full_path()], |
||||
should_fail: true) |
||||
|
Loading…
Reference in new issue