Skip to content
Snippets Groups Projects
Commit 74aaa764 authored by Petr Zejdl's avatar Petr Zejdl
Browse files

Changing gcc optimization flag from -O0 to -Og

parent fa20a617
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ OBJECTS += $(C_SOURCES:.c=.o)
# appropriate rules; CXXFLAGS gets passed as part of command
# invocation for both compilation (where -c is needed) and linking
# (where it's not.)
CXXFLAGS = -std=c++11 -Wall -Wextra -O0 -g -rdynamic -Wconversion
CXXFLAGS = -std=c++11 -Wall -Wextra -Og -g -rdynamic -Wconversion
#CXXFLAGS = -std=c++11 -Wall -Wextra -g -rdynamic
CFLAGS = $(CXXFLAGS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment