Tweak Makefile, enable -rdynamic so that backtraces symbols are found

This commit is contained in:
Maxime Coste 2015-05-27 18:45:52 +01:00
parent faf55c6540
commit d9aee67c8b

View File

@ -10,27 +10,16 @@ sharedir := $(DESTDIR)$(PREFIX)/share/kak
docdir := $(DESTDIR)$(PREFIX)/share/doc/kak
CXXFLAGS += -std=gnu++11 -g -Wall -Wno-reorder -Wno-sign-compare -pedantic
ifneq (,$(findstring CYGWIN,$(os)))
LDFLAGS += -rdynamic
endif
os := $(shell uname)
ifeq ($(os),Darwin)
LIBS += -lncurses
LIBS += -lncurses -lboost_regex-mt
else
LIBS += -lncursesw
LIBS += -lncursesw -lboost_regex
LDFLAGS += -rdynamic
endif
ifneq (,$(findstring CYGWIN,$(os)))
LIBS += -lboost_regex
else ifeq ($(os),Darwin)
LIBS += -lboost_regex-mt
else
LIBS += -lboost_regex
endif
debug ?= yes
ifeq ($(debug),yes)
CXXFLAGS += -DKAK_DEBUG