This commit is contained in:
exurd 2025-11-07 12:04:37 -08:00 committed by GitHub
commit 27bd743579
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -202,7 +202,14 @@ build_failed() {
colorize 33 "Results logged to ${LOG_PATH}"
printf "\n\n"
echo "Last 10 log lines:"
tail -n 10 "$LOG_PATH"
TAIL=`tail -n 10 "$LOG_PATH"`
echo "$TAIL"
if echo "$TAIL" | grep -q "no acceptable C compiler found"; then
printf "\n"
echo "Are the build dependencies for Python correctly installed?"
echo "Please consult to the Wiki page for more info."
echo "https://github.com/pyenv/pyenv/wiki#suggested-build-environment"
fi
fi
} >&3
exit 1