From 8fec0fe5c4b8151bc89b120a70f315b92e8589db Mon Sep 17 00:00:00 2001 From: Cody Northrop Date: Thu, 22 Sep 2016 13:32:04 -0600 Subject: [PATCH] toolchain: Use multiple processes to build glslang --- update_external_sources.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_external_sources.sh b/update_external_sources.sh index ea294f6..780d849 100755 --- a/update_external_sources.sh +++ b/update_external_sources.sh @@ -64,7 +64,7 @@ function build_glslang () { mkdir -p build cd build cmake -D CMAKE_BUILD_TYPE=Release .. - make + make -j $(nproc) make install } -- 2.7.4