From 5c4a54d9987fbdfd7ced72e8bc2737739fc0c57c Mon Sep 17 00:00:00 2001 From: Tomasz Sowa Date: Mon, 25 Nov 2013 23:37:52 +0000 Subject: [PATCH] added: -O0 -g to the production Makefile git-svn-id: svn://ttmath.org/publicrep/winix/trunk@938 e52654a7-88a9-db11-a3e9-0013d4bc506e --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b8f4ec4..644716c 100755 --- a/Makefile +++ b/Makefile @@ -9,7 +9,8 @@ CXX = clang++ #endif ifndef CXXFLAGS -CXXFLAGS = -Wall -O2 -fPIC -pthread -std=c++11 -I/usr/local/include -DEZC_USE_WINIX_LOGGER -DEZC_HAS_SPECIAL_STREAM +#CXXFLAGS = -Wall -O2 -fPIC -pthread -std=c++11 -I/usr/local/include -DEZC_USE_WINIX_LOGGER -DEZC_HAS_SPECIAL_STREAM +CXXFLAGS = -Wall -O0 -g -fPIC -pthread -std=c++11 -I/usr/local/include -DEZC_USE_WINIX_LOGGER -DEZC_HAS_SPECIAL_STREAM endif