diff options
author | Philippe Normand <phil@base-art.net> | 2018-11-25 17:24:41 +0000 |
---|---|---|
committer | Christoph Reiter <creiter@src.gnome.org> | 2019-04-11 16:45:36 +0200 |
commit | 4eb2f297f1647a2bf6a3c2a391ed69bc6a8569f4 (patch) | |
tree | 379edb23cd975e0665a9427186a14ff7b8787e87 /testsuite | |
parent | 89d5c543accd910fc00e604c328cc7a1e72d476f (diff) | |
download | gtk+-4eb2f297f1647a2bf6a3c2a391ed69bc6a8569f4.tar.gz |
meson: Disable --export-dynamic for clang
It doesn't seem to be supported, at least when compiling on macOS.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/gtk/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/gtk/meson.build b/testsuite/gtk/meson.build index ad1789c48c..67863593a4 100644 --- a/testsuite/gtk/meson.build +++ b/testsuite/gtk/meson.build @@ -1,6 +1,6 @@ gtk_tests_export_dynamic_ldflag = [] -if cc.get_id() != 'msvc' +if cc.get_id() != 'msvc' and cc.get_id() != 'clang' gtk_tests_export_dynamic_ldflag = ['-Wl,--export-dynamic'] endif |