diff options
author | Moritz Warning <moritzwarning@web.de> | 2016-07-21 23:08:55 +0200 |
---|---|---|
committer | Moritz Warning <moritzwarning@web.de> | 2016-07-21 23:08:58 +0200 |
commit | 76b785c90fe08eb4bfb08de35e4ddb290ece9362 (patch) | |
tree | 111bf04734b66c01491aad48d0350ca72f8a7555 | |
parent | bdc3b0834bb8abc621ee6dbc9a92769b57376bee (diff) | |
download | infinitytier-76b785c90fe08eb4bfb08de35e4ddb290ece9362.tar.gz infinitytier-76b785c90fe08eb4bfb08de35e4ddb290ece9362.zip |
fix _FORTIFY_SOURCE warning
warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
-rw-r--r-- | make-linux.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make-linux.mk b/make-linux.mk index 13b15476..acc22a63 100644 --- a/make-linux.mk +++ b/make-linux.mk @@ -98,8 +98,8 @@ endif ifeq ($(ZT_DEBUG),1) DEFS+=-DZT_TRACE - override CFLAGS+=-Wall -g -pthread $(INCLUDES) $(DEFS) - override CXXFLAGS+=-Wall -g -pthread $(INCLUDES) $(DEFS) + override CFLAGS+=-Wall -g -O -pthread $(INCLUDES) $(DEFS) + override CXXFLAGS+=-Wall -g -O -pthread $(INCLUDES) $(DEFS) LDFLAGS= STRIP?=echo # The following line enables optimization for the crypto code, since |