From 973100f180eb9bc27f29dd6b78431552b87e6c97 Mon Sep 17 00:00:00 2001 From: Yaossg Date: Fri, 15 Nov 2024 21:39:51 +0800 Subject: [PATCH] mkdir --- boot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.sh b/boot.sh index 54c1842..1a395f5 100644 --- a/boot.sh +++ b/boot.sh @@ -1,4 +1,4 @@ -cd build && +mkdir -p build && cd build && cat ../boot-lib.h ../boot.c | sed '/^#/d' > boot-all.c && gcc ../boot.c ../boot-lib.c -o gcc.out && ./gcc.out < boot-all.c > boot1.s &&