diff options
author | Fabiano Rosas <farosas@suse.de> | 2023-05-25 18:20:44 -0300 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-05-26 12:34:17 +0200 |
commit | db01d85f168b19a48e5112cb02cda37014719c3e (patch) | |
tree | b39194bed13b17783fb7908ddf70a00725684ba0 /subprojects | |
parent | bac1bc848bb5ab7b020975d161a4043cabcbb8f9 (diff) |
meson: Add static glib dependency for initrd-stress.img
We recently moved glib detection code to meson but this changes the
linker command line from -lglib-2.0 to using a path to libglib-2.0.so.
This does not work for static linking, which is used by stress.c:
$ make V=1 tests/migration/initrd-stress.img
cc -m64 -mcx16 -o tests/migration/stress ... -static -Wl,--start-group
/usr/lib64/libglib-2.0.so -Wl,--end-group
...
bin/ld: attempted static link of dynamic object `/usr/lib64/libglib-2.0.so'
Add a specific dependency for stress.c, which is linked statically.
The compiler command line is now:
cc -m64 -mcx16 -o tests/migration/stress ... -static -pthread
-Wl,--start-group -lm /usr/lib64/libpcre.a -lglib-2.0 -Wl,--end-group
Fixes: fc9a809e0d ("build: move glib detection and workarounds to meson")
Signed-off-by: Fabiano Rosas <farosas@suse.de>
Message-Id: <20230525212044.30222-3-farosas@suse.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'subprojects')
0 files changed, 0 insertions, 0 deletions