From 8d6d833770b39e1e4b9c6f924c81b1ef2eea1d6c Mon Sep 17 00:00:00 2001 From: OpenGnSys Support Team Date: Mon, 5 Nov 2018 15:02:20 +0100 Subject: #884 do not strip off symbols Nor use -O3 since this generates code that is harder to debug. Compile binary that can be run inside valgrind for better debugging. --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 44321be..c6fd177 100644 --- a/Makefile +++ b/Makefile @@ -8,8 +8,7 @@ INSTALL_DIR := /opt/opengnsys # Opciones de compilacion CFLAGS := $(shell mysql_config --cflags) -CFLAGS += -O0 -g -Wall -I../../Includes # Depuracion -#CFLAGS += -O3 -I../../Includes # Optimizacion +CFLAGS += -g -Wall -I../../Includes CPPFLAGS := $(CFLAGS) # Opciones de linkado @@ -23,7 +22,6 @@ all: $(PROYECTO) $(PROYECTO): $(OBJS) g++ $(LDFLAGS) $(OBJS) -o $(PROYECTO) -# strip $(PROYECTO) # Optimizacion install: $(PROYECTO) cp $(PROYECTO) $(INSTALL_DIR)/sbin -- cgit v1.2.3-18-g5258