blob: a2c618f143c227c3f053d5bd2e7ddfff0ff52f66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Enable/disable modules and 3rd-party libs to be included in interpreter
# Build 32-bit binaries on a 64-bit host
MICROPY_FORCE_32BIT = 0
# This variable can take the following values:
# 0 - no readline, just simple stdin input
# 1 - use MicroPython version of readline
MICROPY_USE_READLINE = 1
# ffi module requires libffi (libffi-dev Debian package)
MICROPY_PY_FFI = 0
|