This commit is contained in:
Matthew Kennedy 2022-07-20 15:14:14 -07:00
parent f58f39c520
commit b1d6e07475
1 changed files with 0 additions and 8 deletions

View File

@ -47,10 +47,6 @@ ifeq ($(USE_OPT),)
USE_OPT += -Werror=missing-field-initializers -Wno-error=sign-compare USE_OPT += -Werror=missing-field-initializers -Wno-error=sign-compare
endif endif
ifeq ($(COVERAGE),yes)
USE_OPT += -fprofile-arcs -ftest-coverage
endif
# See explanation in main firmware Makefile for these three defines # See explanation in main firmware Makefile for these three defines
USE_OPT += -DEFI_UNIT_TEST=1 -DEFI_PROD_CODE=0 -DEFI_SIMULATOR=0 USE_OPT += -DEFI_UNIT_TEST=1 -DEFI_PROD_CODE=0 -DEFI_SIMULATOR=0
@ -182,10 +178,6 @@ ULIBDIR =
# List all user libraries here # List all user libraries here
ULIBS = -lm ULIBS = -lm
ifeq ($(COVERAGE),yes)
ULIBS += --coverage
endif
ifeq ($(SANITIZE),yes) ifeq ($(SANITIZE),yes)
ULIBS += -fsanitize=address -fsanitize=undefined ULIBS += -fsanitize=address -fsanitize=undefined
endif endif