From d4fcfa47b0dbdb7b13f11fda55698140209889a2 Mon Sep 17 00:00:00 2001 From: cdosoftei Date: Wed, 28 Sep 2022 15:01:54 -0400 Subject: [PATCH] Pass -pthread to linker --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1aed7bf..363c263 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ main: ggml.o main.o - g++ -o main ggml.o main.o + g++ -pthread -o main ggml.o main.o ./main -h ggml.o: ggml.c ggml.h