aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Northrop <cnorthrop@google.com>2016-09-22 13:32:04 -0600
committerCody Northrop <cnorthrop@google.com>2016-09-23 08:32:26 -0600
commit49ccef0ec497ad070f75c4043b7ffe1fab00f6c7 (patch)
tree61047daf17d9aec0edfdf9717a8fde59db9f7b8b
parent50088a306f7947836b3558ea53dc132f6bd773b6 (diff)
downloadusermoji-49ccef0ec497ad070f75c4043b7ffe1fab00f6c7.tar.xz
toolchain: Use multiple processes to build glslang
-rwxr-xr-xupdate_external_sources.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/update_external_sources.sh b/update_external_sources.sh
index ea294f6a..780d8496 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
}