1config BR2_PACKAGE_MICROPYTHON 2 bool "micropython" 3 depends on BR2_TOOLCHAIN_HAS_THREADS 4 depends on !BR2_STATIC_LIBS 5 select BR2_PACKAGE_LIBFFI 6 help 7 Micro Python is a lean and fast implementation of the Python 8 3 programming language that is optimised to run on a 9 microcontroller. 10 11 http://micropython.org 12 13comment "micropython needs a toolchain w/ threads, dynamic library" 14 depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS 15