From 75cc16a5598eb136cdac53f4721e69aceabd6724 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Thu, 11 May 2023 14:16:51 -0600 Subject: [PATCH] Add empty libpthread.a --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c574bc84f4..5e647df78d 100644 --- a/Makefile +++ b/Makefile @@ -92,8 +92,9 @@ install-libs: libs cp -v "$(BUILD)/release/crtn.o" "$(DESTDIR)/lib" cp -v "$(BUILD)/release/ld_so" "$(DESTDIR)/lib/ld64.so.1" cp -v "$(BUILD)/openlibm/libopenlibm.a" "$(DESTDIR)/lib/libm.a" - # Empty libraries for dl and rt + # Empty libraries for dl, pthread, and rt $(AR) -rcs "$(DESTDIR)/lib/libdl.a" + $(AR) -rcs "$(DESTDIR)/lib/libpthread.a" $(AR) -rcs "$(DESTDIR)/lib/librt.a" install-tests: tests