From b90899017b104d26fcaeff423338e7431ccff2a8 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Thu, 18 Feb 2021 19:19:01 -0500 Subject: [PATCH] Set makefile default back to using all computer cores --- makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/makefile b/makefile index de4f269..f995455 100644 --- a/makefile +++ b/makefile @@ -28,8 +28,7 @@ all: $(TARGET) # Compile target if dependencies update. Then run. run: $(TARGET) -# @$(EXE) -n $(CORES) --oversubscribe ./$(TARGET) $(ARGS) - @$(EXE) -n 4 --oversubscribe ./$(TARGET) $(ARGS) + @$(EXE) -n $(CORES) --oversubscribe ./$(TARGET) $(ARGS) # Compile target if dependencies update. Then run. -- GitLab