From 8cda04cc98ee4c44ae1101cda3c6cc7466a19987 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Tue, 30 Nov 2021 13:14:38 -0500 Subject: [PATCH] Use nproc to get the number of cores on Linux to speed up bounds. --- make-linux.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make-linux.mk b/make-linux.mk index eea62f1db..25a2fe617 100644 --- a/make-linux.mk +++ b/make-linux.mk @@ -346,7 +346,7 @@ distclean: clean realclean: distclean official: FORCE - make -j4 ZT_OFFICIAL=1 all + make -j`nproc` ZT_OFFICIAL=1 all docker: FORCE docker build --no-cache -f ext/installfiles/linux/zerotier-containerized/Dockerfile -t zerotier-containerized .