From feefd35853c84a7986bc77f5077a139e11f13e10 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 29 Sep 2016 12:27:51 -0400 Subject: [PATCH] do_cmake.sh: set BOOST_J to $(nproc) This lets us build boost with all processors. Signed-off-by: Sage Weil Signed-off-by: Matt Benjamin --- do_cmake.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/do_cmake.sh b/do_cmake.sh index b5ac28513e8b1..2e9de99e9729e 100755 --- a/do_cmake.sh +++ b/do_cmake.sh @@ -6,7 +6,7 @@ if test -e build; then fi mkdir build cd build -cmake "$@" .. +cmake -DBOOST_J=$(nproc) "$@" .. # minimal config to find plugins cat < ceph.conf -- 2.39.5