svn commit: r366636 - head/lib/libclang_rt

Alex Richardson arichardson at FreeBSD.org
Mon Oct 12 10:42:38 UTC 2020


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>


More information about the svn-src-all mailing list