Browse Source

sanitize undefined in LDFLAGS

pull/1074/head
Matthieu Berthomé 3 years ago
parent
commit
a98426cecb
  1. 4
      Makefile

4
Makefile

@ -93,6 +93,10 @@ LDFLAGS := \
-pthread \
-lrt
ifeq ($(DEBUG),1)
LDFLAGS := ${LDFLAGS} -fsanitize=undefined
endif
DESTDIR =
PREFIX = /usr/local
EXEC_PREFIX = $(PREFIX)

Loading…
Cancel
Save