micropython/ports/unix/variants/coverage/mpconfigvariant.mk
Jim Mussared 977b532c8f unix: Rename unix binaries to micropython-variant (not _variant).
For consistency with mpy-cross, and other unix tools in general.
2020-01-12 10:37:40 +11:00

18 lines
447 B
Makefile

PROG ?= micropython-coverage
COPT = -O0
CFLAGS_EXTRA += \
-fprofile-arcs -ftest-coverage \
-Wdouble-promotion -Wformat -Wmissing-declarations -Wmissing-prototypes -Wsign-compare \
-Wold-style-definition -Wpointer-arith -Wshadow -Wuninitialized -Wunused-parameter \
-DMICROPY_UNIX_COVERAGE
LDFLAGS_EXTRA += -fprofile-arcs -ftest-coverage
FROZEN_MANIFEST = manifest_coverage.py
MICROPY_VFS_FAT = 1
MICROPY_VFS_LFS1 = 1
MICROPY_VFS_LFS2 = 1