From 1c9fe3b4afa1d79b74bd5fc716ef42ffc2a0ebff Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Sun, 6 Jun 2021 23:17:56 -0700 Subject: [PATCH] don't debug info (#2798) --- simulator/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simulator/Makefile b/simulator/Makefile index 799347c5af..5b15d85a1a 100644 --- a/simulator/Makefile +++ b/simulator/Makefile @@ -34,7 +34,7 @@ ifeq ($(USE_OPT),) # this config producec a smaller binary file # 7.3 compiler would want -Wno-error=implicit-fallthrough while 6.4 does not know about it # see https://github.com/rusefi/rusefi/issues/517 - USE_OPT = -Wall -Og -g -Wno-error=implicit-fallthrough -Wno-error=write-strings -Wno-error=strict-aliasing + USE_OPT = -Wall -O2 -Wno-error=implicit-fallthrough -Wno-error=write-strings -Wno-error=strict-aliasing ifeq ($(OS),Windows_NT) else