summarylogtreecommitdiffstats
path: root/compile.bash
diff options
context:
space:
mode:
Diffstat (limited to 'compile.bash')
-rwxr-xr-xcompile.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/compile.bash b/compile.bash
index d04fddf6dc75..efaa08086aba 100755
--- a/compile.bash
+++ b/compile.bash
@@ -48,7 +48,7 @@ build() {
echo "Estimated required memory to build with all cores: $((requiredmemorykb/1024/1024)) GB"
if [[ ${requiredmemorykb} -gt ${freememorykb} ]]; then
jobs=1
- echo "Allocating build jobs according to available memory (${freememorykb}/${requiredmemorykb})..."
+ echo "Allocating build jobs according to available memory (including swap) (${freememorykb}/${requiredmemorykb})..."
# FIXME: Goes one iteration beyond what it should
while [[ $((jobs * mempercorekb)) -lt ${freememorykb} ]]; do
jobs=$((jobs+1))