hosted: Made ASAN globally available, not only on Linux.
This commit is contained in:
parent
4bea5cfe81
commit
83191bb87d
|
@ -16,16 +16,17 @@ ifneq (, $(findstring linux, $(SYS)))
|
||||||
else
|
else
|
||||||
HOSTED_BMP_ONLY ?= 1
|
HOSTED_BMP_ONLY ?= 1
|
||||||
endif
|
endif
|
||||||
CFLAGS += -DHOSTED_BMP_ONLY=$(HOSTED_BMP_ONLY)
|
CFLAGS += -DHOSTED_BMP_ONLY=$(HOSTED_BMP_ONLY)
|
||||||
|
|
||||||
|
ifeq ($(ASAN), 1)
|
||||||
|
CFLAGS += -fsanitize=address -Wno-format-truncation
|
||||||
|
LDFLAGS += -fsanitize=address
|
||||||
|
endif
|
||||||
|
|
||||||
HIDAPILIB = hidapi
|
HIDAPILIB = hidapi
|
||||||
ifneq (, $(findstring linux, $(SYS)))
|
ifneq (, $(findstring linux, $(SYS)))
|
||||||
SRC += serial_unix.c
|
SRC += serial_unix.c
|
||||||
HIDAPILIB = hidapi-hidraw
|
HIDAPILIB = hidapi-hidraw
|
||||||
ifeq ($(ASAN), 1)
|
|
||||||
CFLAGS += -fsanitize=address -Wno-format-truncation
|
|
||||||
LDFLAGS += -fsanitize=address
|
|
||||||
endif
|
|
||||||
else ifneq (, $(findstring mingw, $(SYS)))
|
else ifneq (, $(findstring mingw, $(SYS)))
|
||||||
# Build for windows versions Vista, and above, where the
|
# Build for windows versions Vista, and above, where the
|
||||||
# 'SetupDiGetDevicePropertyW()' function is available
|
# 'SetupDiGetDevicePropertyW()' function is available
|
||||||
|
|
Loading…
Reference in New Issue