move optimization flags

Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
R4SAS 2020-08-18 12:58:09 +03:00
parent 3b89468ad3
commit 1c86a55cce
Signed by: r4sas
GPG Key ID: 66F6C87B98EBCFE2

View File

@ -8,8 +8,10 @@ SYG_SRC = sygcpp.cpp
SYGCPP = sygcpp
ifeq ($(DEBUG),yes)
CXXFLAGS := -g
CXXFLAGS := -g -Og
LDFLAGS := -Og
else
CXXFLAGS := -Os
LDFLAGS := -s -Os
endif