From 6c0e142409d57c11fc03bcbc3d79a4d646f885ff Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Mon, 30 Oct 2023 22:54:28 +0100 Subject: Meta: Create a simple toolchain compilation script --- meta/userland.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'meta/userland.sh') diff --git a/meta/userland.sh b/meta/userland.sh index 1686023..94ab441 100755 --- a/meta/userland.sh +++ b/meta/userland.sh @@ -1,9 +1,12 @@ #!/bin/sh scriptdir="$(dirname "$0")" cd "$scriptdir" +export PATH="$PATH:$(pwd)/../toolchain/bin/bin" cd .. make -C ./userland/libgui make -C ./userland/libc +mkdir -p ./sysroot/lib +make install -C ./userland/libc make -C ./userland/sh make -C ./userland/terminal make -C ./userland/snake -- cgit v1.2.3