From 45c4c1d1e1f389bd1ecc4f931edb689a01c88acf Mon Sep 17 00:00:00 2001 From: Benji Dial Date: Sat, 20 Dec 2025 15:45:32 -0500 Subject: [PATCH] change -Og to -O0 in readme.txt --- readme.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index 7e02cd4..58a9498 100644 --- a/readme.txt +++ b/readme.txt @@ -45,7 +45,7 @@ be attached to it. Use "c" or "continue" in GDB to start execution. While debugging, it is useful to disable optimizations and enable debugging information. In "make-build.sh", under COMMON_CC_EXTRA_FLAGS, you can change -"-O3" to "-Og -ggdb". Then, run these commands to rebuild: +"-O3" to "-O0 -ggdb". Then, run these commands to rebuild: rm -r build rm build.ninja sh make-build.sh