Install gcc during bootstrap

This commit is contained in:
2020-12-08 22:01:00 +01:00
parent 45f992bfd8
commit 16cf9b090b

View File

@@ -36,6 +36,13 @@ if ! command -v make >/dev/null ; then
printf 'Done\n'
fi
# Required for compiling modules in venv.
if ! command -v gcc >/dev/null ; then
printf 'gcc not installed, installing ...\n'
_install "gcc"
printf 'Done\n'
fi
if ! python3 -c 'import venv' 2>/dev/null ; then
printf 'Python3 venv module not installed, installing ...\n'
_install python3-venv