From cf084e9e9283ba2e4a5a73e54552508fff763379 Mon Sep 17 00:00:00 2001 From: Alex Richardson Date: Mon, 12 Oct 2020 10:42:33 +0000 Subject: [PATCH] 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 --- lib/libclang_rt/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/libclang_rt/Makefile b/lib/libclang_rt/Makefile index d80c9876aee0..c1c72299bdf7 100644 --- a/lib/libclang_rt/Makefile +++ b/lib/libclang_rt/Makefile @@ -32,4 +32,6 @@ SUBDIR+= xray-profiling SUBDIR+= profile +SUBDIR_PARALLEL= + .include