diff options
| author | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-05-22 21:14:19 +1000 |
|---|---|---|
| committer | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-05-22 21:14:19 +1000 |
| commit | 845a6b8c8dfa72d9f0b0d76a7bb4dedb2a794007 (patch) | |
| tree | b7a4a4fa8d288173e1d789acf3b36d7ad0e7f1aa /Makefile | |
| parent | 8656027282931d8d279ce66a52775eacf9dd59a9 (diff) | |
fix(make): Change COVERAGE_FLAGS to use gcc friendly flags for
generating coverage instructions
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,8 +10,8 @@ DEBUG_FLAGS = -g -O0 -fno-omit-frame-pointer RELEASE_FLAGS = -O3 -march=native -flto SANFLAGS = -fsanitize=address,undefined -g -O1 -COVERAGE_FLAGS = -fprofile-instr-generate -fcoverage-mapping -COVERAGE_LDFLAGS = -fprofile-instr-generate -fcoverage-mapping +COVERAGE_FLAGS = -fprofile-arcs -ftest-coverage +COVERAGE_LDFLAGS = -fprofile-arcs -ftest-coverage SRC = $(shell find src -name "*.c") |
