File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,10 +3,12 @@ build-fast
33build-minimal
44build-coverage
55build-nanbox
6+ build-freedos
67micropython
78micropython_fast
89micropython_minimal
910micropython_coverage
1011micropython_nanbox
12+ micropython_freedos *
1113* .py
1214* .gcov
Original file line number Diff line number Diff line change @@ -235,7 +235,10 @@ freedos:
235235 PROG=micropython_freedos \
236236 MICROPY_PY_SOCKET=0 \
237237 MICROPY_PY_FFI=0 \
238- MICROPY_PY_JNI=0
238+ MICROPY_PY_JNI=0 \
239+ MICROPY_PY_BTREE=0 \
240+ MICROPY_PY_THREAD=0 \
241+ MICROPY_PY_USSL=0
239242
240243# build an interpreter for coverage testing and do the testing
241244coverage :
Original file line number Diff line number Diff line change 3737// djgpp dirent struct does not have d_ino field
3838#undef _DIRENT_HAVE_D_INO
3939
40- // djgpp errno.h have no ENOTSUP
41- #include <errno.h>
42- #ifndef ENOTSUP
43- #define ENOTSUP 88
44- #endif
40+ #define MICROPY_USE_INTERNAL_ERRNO (1)
You can’t perform that action at this time.
0 commit comments