turn off all compiler optimizations in Makefile

This commit is contained in:
Derek Tan
2024-07-02 12:20:44 -04:00
parent b4e7f39dae
commit cd529c2040

View File

@ -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)