From cd529c2040e36f99c27b8da497789e3eed2b670c Mon Sep 17 00:00:00 2001 From: Derek Tan Date: Tue, 2 Jul 2024 12:20:44 -0400 Subject: [PATCH] turn off all compiler optimizations in Makefile --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 9b49b44..dbba29f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -8,7 +8,7 @@ ########## Variables ########## CXX = g++ # compiler -CXXFLAGS = -std=c++20 -g -Wall -MMD -lncurses # compiler flags +CXXFLAGS = -std=c++20 -g -Wall -MMD -lncurses -O0 # compiler flags MAKEFILE_NAME = ${firstword ${MAKEFILE_LIST}} # makefile name SOURCES = $(wildcard *.cc) # source files (*.cc)