From d6f54cf62bd4ab4441629cbaef0c5a671fbbc234 Mon Sep 17 00:00:00 2001 From: norangebit Date: Wed, 7 Apr 2021 15:10:16 +0200 Subject: [PATCH] fix mpe --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 8450252..73894b5 100644 --- a/makefile +++ b/makefile @@ -14,7 +14,7 @@ parallel-log: src/parallel.c src/util.c src/kmp.c build mpicc -std=c99 -D LOG src/parallel.c src/util.c src/kmp.c -lm -o build/kmp-pl.out parallel-mpe: src/parallel.c src/util.c src/kmp.c build - mpecc -std=c99 src/parallel.c src/util.c src/kmp.c -lm -o build/kmp-mpe.out + mpecc -std=c99 -mpilog -lpthread src/parallel.c src/util.c src/kmp.c -lm -o build/kmp-mpe.out build: mkdir build