From 587b5a8986be929fd5e713a59ea63f2c3b1d86dc Mon Sep 17 00:00:00 2001 From: Vicente Romero Date: Fri, 25 Feb 2022 17:09:06 +0000 Subject: [PATCH] removes -g3 gcc flag for all targets, except debug --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 86b49e2..11f8b36 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ TESTSDIR = tests UNITTESTSDIR = tests/unit CC = gcc -CFLAGS = -std=c99 -Wall -O3 -g3 -march=native -mtune=native +CFLAGS = -std=c99 -Wall -O3 -march=native -mtune=native DEBUGFLAGS = -std=c99 -Wall -O0 -g3 LDFLAGS = -shared AR = ar