From 3959cf7eb273199adeaaab3421102dcac38c9c22 Mon Sep 17 00:00:00 2001 From: falkTX Date: Wed, 3 May 2023 18:40:30 +0200 Subject: [PATCH] Do not use pthread under wasm Signed-off-by: falkTX --- plugins/Nekobi/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/Nekobi/Makefile b/plugins/Nekobi/Makefile index c89dfb1..0a62590 100644 --- a/plugins/Nekobi/Makefile +++ b/plugins/Nekobi/Makefile @@ -29,8 +29,10 @@ include ../../dpf/Makefile.plugins.mk # -------------------------------------------------------------- # Extra flags +ifneq ($(WASM),true) BASE_FLAGS += -pthread LINK_FLAGS += -pthread +endif # -------------------------------------------------------------- # Enable all possible plugin types