summaryrefslogtreecommitdiffstats
path: root/admin/Sources/Services/ogAdmAgent/Makefile
diff options
context:
space:
mode:
authorOpenGnSys Support Team <soporte-og@soleta.eu>2018-11-05 15:02:20 +0100
committerOpenGnSys Support Team <soporte-og@soleta.eu>2019-01-17 13:18:36 +0100
commitbfa70ab1c64efb9a0f39f7be1b1bd909d506b32a (patch)
treea7741a93917966f58f1f5af75bf08f31017db08c /admin/Sources/Services/ogAdmAgent/Makefile
parent13e48b44372149bbd031c0ce19515bd6237c192b (diff)
#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.
Diffstat (limited to 'admin/Sources/Services/ogAdmAgent/Makefile')
-rw-r--r--admin/Sources/Services/ogAdmAgent/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/admin/Sources/Services/ogAdmAgent/Makefile b/admin/Sources/Services/ogAdmAgent/Makefile
index 143c4c81..b9d39b9b 100644
--- a/admin/Sources/Services/ogAdmAgent/Makefile
+++ b/admin/Sources/Services/ogAdmAgent/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