diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-12-06 00:44:47 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-12-06 16:20:54 +0200 |
commit | c44a5a1aeca638f46b4a2d8d4a9fcb0a554037df (patch) | |
tree | 71c4fd88e2fdd98dfd61d8c3f539999ea22a658b /test cases | |
parent | 4db1b3a09f8e1f9faf7747beca2bc77ae0e5a6a5 (diff) | |
download | meson-c44a5a1aeca638f46b4a2d8d4a9fcb0a554037df.zip meson-c44a5a1aeca638f46b4a2d8d4a9fcb0a554037df.tar.gz meson-c44a5a1aeca638f46b4a2d8d4a9fcb0a554037df.tar.bz2 |
Deduplicate export-dynamic and pthread. Closes #4567.
Diffstat (limited to 'test cases')
-rw-r--r-- | test cases/unit/49 ldflagdedup/bob.c | 5 | ||||
-rw-r--r-- | test cases/unit/49 ldflagdedup/meson.build | 12 | ||||
-rw-r--r-- | test cases/unit/49 ldflagdedup/prog.c | 7 |
3 files changed, 24 insertions, 0 deletions
diff --git a/test cases/unit/49 ldflagdedup/bob.c b/test cases/unit/49 ldflagdedup/bob.c new file mode 100644 index 0000000..a68d4b1 --- /dev/null +++ b/test cases/unit/49 ldflagdedup/bob.c @@ -0,0 +1,5 @@ +#include<gmodule.h> + +int func() { + return 0; +} diff --git a/test cases/unit/49 ldflagdedup/meson.build b/test cases/unit/49 ldflagdedup/meson.build new file mode 100644 index 0000000..0bbcc50 --- /dev/null +++ b/test cases/unit/49 ldflagdedup/meson.build @@ -0,0 +1,12 @@ +project('lddedup', 'c') + +# Chosen because its ldflags contains -Wl,--export-dynamic, +# which must be deduplicated. +gm = dependency('gmodule-2.0') + +lib = static_library('bob', 'bob.c', + dependencies: gm) + +executable('prog', 'prog.c', + link_with: lib, + dependencies: gm) diff --git a/test cases/unit/49 ldflagdedup/prog.c b/test cases/unit/49 ldflagdedup/prog.c new file mode 100644 index 0000000..02c599d --- /dev/null +++ b/test cases/unit/49 ldflagdedup/prog.c @@ -0,0 +1,7 @@ +#include<gmodule.h> + +int func(); + +int main(int argc, char **argv) { + return func(); +} |