mirror of
https://github.com/xemu-project/xemu.git
synced 2025-04-02 11:11:48 -04:00
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>
This commit is contained in:
parent
bac1bc848b
commit
db01d85f16
1 changed files with 3 additions and 1 deletions
|
@ -1,9 +1,11 @@
|
||||||
sysprof = dependency('sysprof-capture-4', required: false)
|
sysprof = dependency('sysprof-capture-4', required: false)
|
||||||
|
glib_static = dependency('glib-2.0', version: glib_req_ver, required: false,
|
||||||
|
method: 'pkg-config', static: true)
|
||||||
|
|
||||||
stress = executable(
|
stress = executable(
|
||||||
'stress',
|
'stress',
|
||||||
files('stress.c'),
|
files('stress.c'),
|
||||||
dependencies: [glib, sysprof],
|
dependencies: [glib_static, sysprof],
|
||||||
link_args: ['-static'],
|
link_args: ['-static'],
|
||||||
build_by_default: false,
|
build_by_default: false,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue