1
0
mirror of https://gitlab.com/qemu-project/qemu synced 2024-07-09 04:27:12 +00:00
qemu/tests/migration
Fabiano Rosas db01d85f16 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>
2023-05-26 12:34:17 +02:00
..
aarch64 tests/migration/aarch64: Speed up the aarch64 migration test 2022-08-24 10:14:49 +01:00
guestperf hw/misc/sga: Remove the deprecated "sga" device 2023-02-14 09:02:42 +01:00
i386 tests/migration/i386: Speed up the i386 migration test (when using TCG) 2022-08-24 10:14:49 +01:00
s390x tests/migration: Enable the migration test on s390x, too 2018-10-11 19:58:21 +01:00
guestperf-batch.py tests/migration: Fix LGPL information in the file headers 2020-11-15 17:04:40 +01:00
guestperf-plot.py tests/migration: Fix LGPL information in the file headers 2020-11-15 17:04:40 +01:00
guestperf.py tests/migration: Fix LGPL information in the file headers 2020-11-15 17:04:40 +01:00
initrd-stress.sh meson: convert migration/initrd-stress 2020-09-08 11:43:16 +02:00
Makefile migration-test: Only generate a single target architecture 2018-10-11 19:58:26 +01:00
meson.build meson: Add static glib dependency for initrd-stress.img 2023-05-26 12:34:17 +02:00
migration-test.h Clean up a few header guard symbols 2019-06-12 13:20:20 +02:00
stress.c tests: Use g_mkdir_with_parents() 2022-08-25 15:24:09 +02:00