* [PATCH 1/2] ninja: Allow to limit the parallel build processes.
@ 2020-12-26 17:09 Stefan Schantl
2020-12-26 17:09 ` [PATCH 2/2] make.sh: Limit ninja to compute paralellism value Stefan Schantl
0 siblings, 1 reply; 2+ messages in thread
From: Stefan Schantl @ 2020-12-26 17:09 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1307 bytes --]
When run, ninja normally runs a maximum number of processes in parallel.
By default this is the number of cores on the system plus two. In some cases this can
overheat a CPU or run a system out of memory. If run from the command line, passing a
-jN parameter will limit the number of parallel processes, but some packages embed the
execution of ninja and do not pass a -j parameter.
Using this optional procedure allows us to limit the number of parallel processes
via an environment variable, NINJAJOBS.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
lfs/ninja | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/lfs/ninja b/lfs/ninja
index c968345f4..ed9f8b778 100644
--- a/lfs/ninja
+++ b/lfs/ninja
@@ -71,6 +71,14 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
+ # Allow to limit the paralell build processes ninja will do.
+ cd $(DIR_APP) && sed -i '/int Guess/a \
+ int j = 0;\
+ char* jobs = getenv( "NINJAJOBS" );\
+ if ( jobs != NULL ) j = atoi( jobs );\
+ if ( j > 0 ) return j;\
+ ' src/ninja.cc
+
# Configure and bootstrap the build environment
cd $(DIR_APP) && python3 configure.py --bootstrap --verbose
--
2.20.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 2/2] make.sh: Limit ninja to compute paralellism value
2020-12-26 17:09 [PATCH 1/2] ninja: Allow to limit the parallel build processes Stefan Schantl
@ 2020-12-26 17:09 ` Stefan Schantl
0 siblings, 0 replies; 2+ messages in thread
From: Stefan Schantl @ 2020-12-26 17:09 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 881 bytes --]
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
make.sh | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/make.sh b/make.sh
index 5b1e949c4..8dfc8897d 100755
--- a/make.sh
+++ b/make.sh
@@ -220,6 +220,9 @@ configure_build() {
# Use this as default PARALLELISM
DEFAULT_PARALLELISM="${parallelism}"
+ # Limit lauched ninja build jobs to computed parallel value.
+ NINJAJOBS="${parallelism}"
+
# Compression parameters
# We use mode 8 for reasonable memory usage when decompressing
# but with overall good compression
@@ -465,7 +468,7 @@ prepareenv() {
# Setup environment
set +h
LC_ALL=POSIX
- export LFS LC_ALL CFLAGS CXXFLAGS DEFAULT_PARALLELISM RUSTFLAGS
+ export LFS LC_ALL CFLAGS CXXFLAGS DEFAULT_PARALLELISM RUSTFLAGS NINJAJOBS
unset CC CXX CPP LD_LIBRARY_PATH LD_PRELOAD
# Make some extra directories
--
2.20.1
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-12-26 17:09 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-26 17:09 [PATCH 1/2] ninja: Allow to limit the parallel build processes Stefan Schantl
2020-12-26 17:09 ` [PATCH 2/2] make.sh: Limit ninja to compute paralellism value Stefan Schantl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox