summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-07-31 02:27:13 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-07-31 02:27:13 +0300
commitaac9e8cfa343790a9e8dbafccf3d27687fc29cf4 (patch)
tree99489f95e84fcbff200dc7b08bb892d4ca65c0e6
parent99061d1dcb92dcff87b8a32be3e308a37fe4c13a (diff)
downloadmicropython-aac9e8cfa343790a9e8dbafccf3d27687fc29cf4.tar.gz
micropython-aac9e8cfa343790a9e8dbafccf3d27687fc29cf4.zip
unix/Makefile: And note why btree module is disabled for coverage build.
-rw-r--r--unix/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/unix/Makefile b/unix/Makefile
index 681deb87e4..cb9a999f08 100644
--- a/unix/Makefile
+++ b/unix/Makefile
@@ -263,6 +263,8 @@ freedos:
MICROPY_PY_JNI=0
# build an interpreter for coverage testing and do the testing
+# btree module is disabled, because with extra warnings enabled,
+# building berkeleydb errors out
coverage:
$(MAKE) COPT="-O0" MICROPY_PY_BTREE=0 CFLAGS_EXTRA='-DMP_CONFIGFILE="<mpconfigport_coverage.h>" -fprofile-arcs -ftest-coverage -Wdouble-promotion -Wformat -Wmissing-declarations -Wmissing-prototypes -Wold-style-definition -Wpointer-arith -Wshadow -Wsign-compare -Wuninitialized -Wunused-parameter -DMICROPY_UNIX_COVERAGE' LDFLAGS_EXTRA='-fprofile-arcs -ftest-coverage' BUILD=build-coverage PROG=micropython_coverage