Makefile (7b4ad03738650365063b2f91f2fee6d1906647f3) | Makefile (f959ac69f5a39efe9c954f67c7df09bb7c45dab8) |
---|---|
1CC = g++ 2 3# Requirements: cpputest.github.io 4 5BTSTACK_ROOT = ../.. 6 7CFLAGS = -DUNIT_TEST -x c++ -g -Wall -Wnarrowing -Wconversion-null -I. -I../ -I${BTSTACK_ROOT}/src | 1CC = g++ 2 3# Requirements: cpputest.github.io 4 5BTSTACK_ROOT = ../.. 6 7CFLAGS = -DUNIT_TEST -x c++ -g -Wall -Wnarrowing -Wconversion-null -I. -I../ -I${BTSTACK_ROOT}/src |
8CFLAGS += -fprofile-arcs -ftest-coverage | 8CFLAGS += -fprofile-arcs -ftest-coverage -fsanitize=address |
9LDFLAGS += -lCppUTest -lCppUTestExt 10 11VPATH += ${BTSTACK_ROOT}/src 12VPATH += ${BTSTACK_ROOT}/src/ble 13VPATH += ${BTSTACK_ROOT}/platform/posix 14 15COMMON = \ 16 ad_parser.c \ --- 37 unchanged lines hidden --- | 9LDFLAGS += -lCppUTest -lCppUTestExt 10 11VPATH += ${BTSTACK_ROOT}/src 12VPATH += ${BTSTACK_ROOT}/src/ble 13VPATH += ${BTSTACK_ROOT}/platform/posix 14 15COMMON = \ 16 ad_parser.c \ --- 37 unchanged lines hidden --- |