From e9cd11768c20707eff31912db1bafc837c0224d2 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Sat, 9 Jun 2018 17:54:36 +0200 Subject: [PATCH] Enable parallel make on MS Windows by default fixes #874 --- getarch.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/getarch.c b/getarch.c index fcffe63e2..31f41d62c 100644 --- a/getarch.c +++ b/getarch.c @@ -1196,9 +1196,7 @@ int main(int argc, char *argv[]){ #elif NO_PARALLEL_MAKE==1 printf("MAKE += -j 1\n"); #else -#ifndef OS_WINDOWS printf("MAKE += -j %d\n", get_num_cores()); -#endif #endif break;