hurd: fix build of tst-system.c
authorAdam Yi <ayi@janestreet.com>
Wed, 8 Mar 2023 08:11:47 +0000 (03:11 -0500)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Wed, 8 Mar 2023 11:49:54 +0000 (08:49 -0300)
We made tst-system.c depend on pthread, but that requires linking with
$(shared-thread-library). It does not fail under Linux because the
variable expands to nothing under Linux, but it fails for Hurd.

I tested verified via cross-compiling that "make check" now works
for Hurd.

Signed-off-by: Adam Yi <ayi@janestreet.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
stdlib/Makefile

index cd32f53..5e38f0e 100644 (file)
@@ -281,6 +281,7 @@ LDLIBS-test-on_exit-race = $(shared-thread-library)
 LDLIBS-tst-canon-bz26341 = $(shared-thread-library)
 LDLIBS-tst-arc4random-fork = $(shared-thread-library)
 LDLIBS-tst-arc4random-thread = $(shared-thread-library)
+LDLIBS-tst-system = $(shared-thread-library)
 
 LDLIBS-test-dlclose-exit-race = $(shared-thread-library)
 LDFLAGS-test-dlclose-exit-race = $(LDFLAGS-rdynamic)