From 552a0482af54cd856f14c8fa138fff63d4e0b926 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Fri, 24 Oct 2025 14:50:52 +0200 Subject: toolchain: switch to semi-static toolchain --- scripts/0000-prepare-os.sh | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) (limited to 'scripts/0000-prepare-os.sh') diff --git a/scripts/0000-prepare-os.sh b/scripts/0000-prepare-os.sh index 33b0deb..a2039ad 100755 --- a/scripts/0000-prepare-os.sh +++ b/scripts/0000-prepare-os.sh @@ -2,14 +2,21 @@ set -e -pacman --noconfirm -Syu +export DEBIAN_FRONTEND=noninteractive -pacman --noconfirm --needed -S \ - base-devel \ - libelf \ - libmpc \ - zlib +apt-get update -pacman --noconfirm --needed --asdeps -S \ - gmp \ - mpfr +apt-get install -y --no-install-recommends \ + build-essential \ + bison \ + curl \ + ca-certificates \ + flex \ + gawk \ + libtool \ + patch \ + texinfo \ + wget \ + xz-utils + +rm -rf /var/lib/apt/lists/* -- cgit v1.2.3