From edc34e77d5f19aa2a697f16d9e2d24677dafb506 Mon Sep 17 00:00:00 2001 From: TazyFoundSoup Date: Mon, 8 Jun 2026 10:35:16 +1000 Subject: feat(thread): Implement pthread bridge and fix allocator usage in wrapper --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 72bcb00..9801d29 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,10 @@ ifeq ($(USE_BENCH),1) ALL_CFLAGS += -DUSE_BENCH endif +ifeq ($(USE_THREAD),1) +ALL_CFLAGS += -DUSE_THREAD +endif + OBJ = $(patsubst %.c,$(OUTDIR)/%.o,$(SRC)) all: release -- cgit v1.2.3