[build] Change debug flag from Og to O0

This flag caused lldb problems
This commit is contained in:
Léa Saviot
2018-07-05 11:00:18 +02:00
parent a0c427076f
commit 85ca01a7dc

View File

@@ -8,7 +8,7 @@ CXXFLAGS = -std=c++11 -fno-exceptions -fno-rtti -fno-threadsafe-statics
# Flags - Optimizations
ifeq ($(DEBUG),1)
SFLAGS = -Og -g
SFLAGS = -O0 -g
else
SFLAGS = -Os
endif