1
0
forked from GitHub/gf-core

runtime/c/setup.sh: use make -j to speed up compilation

The configuration script takes significantly longer to run than the compilation
of all the C code, which is a hint that is in need of a major simplification.
This commit is contained in:
hallgren
2014-06-19 09:26:44 +00:00
parent f0e7abc04d
commit 158519624e

View File

@@ -11,7 +11,7 @@ case "$command" in
./configure "$@"
;;
build)
make "$@"
make -j "$@"
;;
copy|install)
make install "$@"