From: Stephen Seo Date: Fri, 18 Aug 2023 05:51:53 +0000 (+0900) Subject: Use -Og instead of -O0 in Debug builds X-Git-Url: https://git.seodisparate.com/stephenseo/css/v4-font-face.min.css?a=commitdiff_plain;h=d4188f29b178b5bd20c216261debc695fbf4e44c;p=jumpartifact.com_demo_0 Use -Og instead of -O0 in Debug builds --- diff --git a/Makefile b/Makefile index 0693eb8..58a313c 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ ifdef DEBUG - COMMON_FLAGS = -g -O0 + COMMON_FLAGS = -g -Og else COMMON_FLAGS = -DNDEBUG -O3 endif diff --git a/wasm_build/Makefile b/wasm_build/Makefile index e237bb9..261aeec 100644 --- a/wasm_build/Makefile +++ b/wasm_build/Makefile @@ -1,7 +1,7 @@ ifdef RELEASE OTHER_FLAGS = -DNDEBUG -O3 else - OTHER_FLAGS = -O0 + OTHER_FLAGS = -Og endif SOURCES = \