Skip to content

Commit 8d51c9d

Browse files
committed
unix: When using separate obj output dirs, make -B is no longer relevant.
1 parent 2e22c2b commit 8d51c9d

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

unix/Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,17 +125,14 @@ uninstall:
125125

126126
# build synthetically fast interpreter for benchmarking
127127
fast:
128-
@echo Make sure to run make -B
129128
$(MAKE) COPT="-O2 -DNDEBUG -fno-crossjumping" CFLAGS_EXTRA='-DMP_CONFIGFILE="<mpconfigport_fast.h>"' BUILD=build-fast PROG=micropython_fast
130129

131130
# build a minimal interpreter
132131
minimal:
133-
@echo Make sure to run make -B
134132
$(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
135133

136134
# build an interpreter for coverage testing and do the testing
137135
coverage:
138-
@echo Make sure to run make -B
139136
$(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
140137

141138
coverage_test: coverage

0 commit comments

Comments
 (0)