From f0ddc1ebeee8ac82d296107c2132de3d4092d17a Mon Sep 17 00:00:00 2001 From: cowmonk Date: Mon, 21 Jul 2025 15:27:46 -0700 Subject: [PATCH] allow for stripped down cowos kernel --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dc5061c..f249976 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,8 @@ make By default the kernel is compiled with debug symbols, if you would like to avoid this, you can simply override the CFLAGS: ```bash cd kernel/ # it is recommended to go to the actual directory yourself -make CFLAGS="-s -O3 -pipe" +make CFLAGS="-O3 -pipe" +llvm-strip --strip-all ./kernel/bin/cowos # strip everything cd .. # return to root make ```