* [PATCH] lfs/Config: fix build if MAX_PARALLELISM is lower than one
@ 2021-03-28 18:40 Arne Fitzenreiter
0 siblings, 0 replies; only message in thread
From: Arne Fitzenreiter @ 2021-03-28 18:40 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1138 bytes --]
If you have 2GB RAM the build of dnsdist will fail because MAX_PARALLELISM was
set to zero by RAM/2048 because a bit of RAM is used by the system.
This patch ensure that the lowest PARALLELISM value is 1.
Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>
---
lfs/Config | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/lfs/Config b/lfs/Config
index ee3dc2365..4e3ddb880 100644
--- a/lfs/Config
+++ b/lfs/Config
@@ -35,11 +35,15 @@ unexport BUILD_ARCH BUILD_PLATFORM BUILDTARGET CROSSTARGET TOOLCHAIN TOOLS_DIR
unexport XZ_OPT
PARALLELISM = $(shell echo $$( \
- if [ -n "$(MAX_PARALLELISM)" ] && [ $(MAX_PARALLELISM) -lt $(DEFAULT_PARALLELISM) ]; then \
- echo $(MAX_PARALLELISM); \
+ if [ -n "$(MAX_PARALLELISM)" ] && [ $(MAX_PARALLELISM) -lt 1 ]; then \
+ echo 1 ; \
else \
- echo $(DEFAULT_PARALLELISM); \
- fi) \
+ if [ -n "$(MAX_PARALLELISM)" ] && [ $(MAX_PARALLELISM) -lt $(DEFAULT_PARALLELISM) ]; then \
+ echo $(MAX_PARALLELISM); \
+ else \
+ echo $(DEFAULT_PARALLELISM); \
+ fi \
+ fi ) \
)
MAKETUNING = -j$(PARALLELISM)
--
2.25.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2021-03-28 18:40 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-28 18:40 [PATCH] lfs/Config: fix build if MAX_PARALLELISM is lower than one Arne Fitzenreiter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox