summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-03-21 00:42:10 +0200
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-03-21 00:42:29 +0200
commit8d51c9d37601e30b58cde625251225c8cee83cc3 (patch)
tree85c320512baf198c1a1065f7efdb4be45f5d82e0
parent2e22c2b477574c22986277392d61018448709d60 (diff)
downloadmicropython-8d51c9d37601e30b58cde625251225c8cee83cc3.tar.gz
micropython-8d51c9d37601e30b58cde625251225c8cee83cc3.zip
unix: When using separate obj output dirs, make -B is no longer relevant.
-rw-r--r--unix/Makefile3
1 files changed, 0 insertions, 3 deletions
diff --git a/unix/Makefile b/unix/Makefile
index 912cf1bc98..83ba7b7b3e 100644
--- a/unix/Makefile
+++ b/unix/Makefile
@@ -125,17 +125,14 @@ uninstall:
# build synthetically fast interpreter for benchmarking
fast:
- @echo Make sure to run make -B
$(MAKE) COPT="-O2 -DNDEBUG -fno-crossjumping" CFLAGS_EXTRA='-DMP_CONFIGFILE="<mpconfigport_fast.h>"' BUILD=build-fast PROG=micropython_fast
# build a minimal interpreter
minimal:
- @echo Make sure to run make -B
$(MAKE) COPT="-Os -DNDEBUG" CFLAGS_EXTRA='-DMP_CONFIGFILE="<mpconfigport_minimal.h>"' BUILD=build-minimal PROG=micropython_minimal MICROPY_PY_TIME=0 MICROPY_PY_TERMIOS=0 MICROPY_PY_SOCKET=0 MICROPY_PY_FFI=0
# build an interpreter for coverage testing and do the testing
coverage:
- @echo Make sure to run make -B
$(MAKE) COPT="-O0" CFLAGS_EXTRA='-fprofile-arcs -ftest-coverage -Wdouble-promotion -Wformat -Wmissing-declarations -Wmissing-prototypes -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wsign-compare -Wstrict-prototypes -Wuninitialized -Wunused-parameter' LDFLAGS_EXTRA='-fprofile-arcs -ftest-coverage' BUILD=build-coverage PROG=micropython_coverage
coverage_test: coverage