commit f0ddc1ebeee8ac82d296107c2132de3d4092d17a
parent 3d0bd481c9f6d16b1cf3629309f8844c83cab5e4
Author: cowmonk <cowmonk@based.pt>
Date: Mon, 21 Jul 2025 15:27:46 -0700
allow for stripped down cowos kernel
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git 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
```