Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Oct 2020 10:42:33 +0000 (UTC)
From:      Alex Richardson <arichardson@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r366636 - head/lib/libclang_rt
Message-ID:  <202010121042.09CAgXNt071649@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: arichardson
Date: Mon Oct 12 10:42:33 2020
New Revision: 366636
URL: https://svnweb.freebsd.org/changeset/base/366636

Log:
  Enable SUBDIR_PARELLEL in lib/libclang_rt
  
  I noticed that this part of the build was taking much longer than
  expected. Turns out it's due to not running the subdirs in parallel.
  Reduces `make all` inside lib/libclang_rt time from 63s to 20s with -j32.
  
  Reviewed By:	dim
  Differential Revision: https://reviews.freebsd.org/D26623

Modified:
  head/lib/libclang_rt/Makefile

Modified: head/lib/libclang_rt/Makefile
==============================================================================
--- head/lib/libclang_rt/Makefile	Mon Oct 12 10:42:28 2020	(r366635)
+++ head/lib/libclang_rt/Makefile	Mon Oct 12 10:42:33 2020	(r366636)
@@ -32,4 +32,6 @@ SUBDIR+=	xray-profiling
 
 SUBDIR+=	profile
 
+SUBDIR_PARALLEL=
+
 .include <bsd.subdir.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010121042.09CAgXNt071649>