From 16f4f11cd9c05e3978a51b2d133fd8e789782b1d Mon Sep 17 00:00:00 2001 From: Szczepan Zalega Date: Fri, 17 Nov 2023 13:39:20 +0100 Subject: [PATCH] set opt 0 --- build/gcc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/gcc/Makefile b/build/gcc/Makefile index bcb3742..acb21f1 100644 --- a/build/gcc/Makefile +++ b/build/gcc/Makefile @@ -173,8 +173,8 @@ FORMAT = ihex # Optimization level, can be [0, 1, 2, 3, s]. # 0 = turn off optimization. s = optimize for size. # (Note: 3 is not always the best optimization level. See avr-libc FAQ.) -OPT = 2 -#OPT = 0 +#OPT = 2 +OPT = 0 # Debugging format. # Native formats for AVR-GCC's -g are stabs [default], or dwarf-2.