[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 2/2] meson: Add static glib dependency for initrd-stress.img
|
From: |
Juan Quintela |
|
Subject: |
Re: [PATCH 2/2] meson: Add static glib dependency for initrd-stress.img |
|
Date: |
Fri, 26 May 2023 12:32:44 +0200 |
|
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) |
Fabiano Rosas <farosas@suse.de> wrote:
> We recently moved glib detection code to meson but the static libs
> were left out. Add a specific dependency for stress.c which is linked
> statically.
>
> $ make V=1 tests/migration/initrd-stress.img
>
> before:
> 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'
>
> after:
> 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>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Tested-by: Juan Quintela <quintela@redhat.com>
queued.