On 12/10/21 15:35, Thomas Huth wrote:
-# pthread probe
-PTHREADLIBS_LIST="-pthread -lpthread -lpthreadGC2"
Looks like the variants in PTHREADLIBS_LIST were not taking into account
for linking anymore since the switch to meson? Are there still recent
systems around where this is needed? I guess not, otherwise people would
have complained with QEMU v6.x already, thus:
Reviewed-by: Thomas Huth <th...@redhat.com>
Yes, QEMU has not needed pthreads on Windows for a long time (so no
-lpthreadGC2 is needed), and everything else is covered simply by
threads = dependency('threads')
Paolo