Skip to content

Commit 75d3e89

Browse files
committed
remove debug symbols
1 parent 9650bde commit 75d3e89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ libdir = $(exec_prefix)/lib
66
includedir = $(prefix)/include
77
pkgconfigdir = $(libdir)/pkgconfig
88

9-
CFLAGS = -ggdb -O0 -Wall -Wextra -DFLOAT_SUPPORT
9+
CFLAGS = -Wall -Wextra -DFLOAT_SUPPORT
1010
LDFLAGS_GCSECTIONS = -Wl,--gc-sections
1111
LDFLAGS = $(if $(gc_sections-pass),$(LDFLAGS_GCSECTIONS))
1212

@@ -203,7 +203,7 @@ tag: distcheck
203203

204204
cflags := $(CPPFLAGS) -I$(SRCDIR)include
205205
cflags += -DTINYCBOR_VERSION_SUFFIX=\"$(DIRTYSRC)\"
206-
cflags += -ggdb -std=c99 $(CFLAGS)
206+
cflags += -std=c99 $(CFLAGS)
207207
%.o: %.c
208208
@test -d $(@D) || $(MKDIR) $(@D)
209209
$(CC) $(cflags) $($(basename $(notdir $@))_CCFLAGS) -c -o $@ $<

0 commit comments

Comments
 (0)