diff options
| author | Xavier Claessens <xavier.claessens@collabora.com> | 2019-10-11 11:01:22 -0400 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-10-21 01:08:05 +0300 |
| commit | 212a05b87ed34f921dfd07142305389dbfa9bb7d (patch) | |
| tree | eb6cea91360c05c4eaf0e9b591f271e8c94288a3 /test cases/unit | |
| parent | aece7ecded6f9113535c5b1c3e2f41056d3d041d (diff) | |
| download | meson-212a05b87ed34f921dfd07142305389dbfa9bb7d.tar.gz | |
Remove duplicated object files in static libraries
When a static library link_whole to a bunch of other static libraries,
we have to extract all their objects recursively. But that could
introduce duplicated objects. ar is dumb enough to allow this without
error, but once the resulting static library is linked into an
executable or shared library, the linker will complain about duplicated
symbols.
Diffstat (limited to 'test cases/unit')
| -rw-r--r-- | test cases/unit/69 static link/lib/func17.c | 4 | ||||
| -rw-r--r-- | test cases/unit/69 static link/lib/func18.c | 6 | ||||
| -rw-r--r-- | test cases/unit/69 static link/lib/func19.c | 7 | ||||
| -rw-r--r-- | test cases/unit/69 static link/lib/meson.build | 12 |
4 files changed, 29 insertions, 0 deletions
diff --git a/test cases/unit/69 static link/lib/func17.c b/test cases/unit/69 static link/lib/func17.c new file mode 100644 index 000000000..d1d8ec498 --- /dev/null +++ b/test cases/unit/69 static link/lib/func17.c @@ -0,0 +1,4 @@ +int func17() +{ + return 1; +} diff --git a/test cases/unit/69 static link/lib/func18.c b/test cases/unit/69 static link/lib/func18.c new file mode 100644 index 000000000..c149085ba --- /dev/null +++ b/test cases/unit/69 static link/lib/func18.c @@ -0,0 +1,6 @@ +int func17(); + +int func18() +{ + return func17() + 1; +} diff --git a/test cases/unit/69 static link/lib/func19.c b/test cases/unit/69 static link/lib/func19.c new file mode 100644 index 000000000..69120e4bf --- /dev/null +++ b/test cases/unit/69 static link/lib/func19.c @@ -0,0 +1,7 @@ +int func17(); +int func18(); + +int func19() +{ + return func17() + func18(); +} diff --git a/test cases/unit/69 static link/lib/meson.build b/test cases/unit/69 static link/lib/meson.build index 5f04aab6a..8f95fc454 100644 --- a/test cases/unit/69 static link/lib/meson.build +++ b/test cases/unit/69 static link/lib/meson.build @@ -66,3 +66,15 @@ libfunc15 = static_library('func15', 'func15.c', libfunc16 = static_library('func16', 'func16.c', link_with : libfunc15, install : true) + +# Verify func17.c.o gets included only once into libfunc19, otherwise +# func19-shared would failed with duplicated symbol. +libfunc17 = static_library('func17', 'func17.c', + install : false) +libfunc18 = static_library('func18', 'func18.c', + link_with : libfunc17, + install : false) +libfunc19 = static_library('func19', 'func19.c', + link_whole : [libfunc17, libfunc18], + install : false) +shared_library('func19-shared', link_whole : [libfunc19]) |
