Config.in 629 B

1234567891011121314151617181920212223
  1. config BR2_PACKAGE_MICROPYTHON
  2. bool "micropython"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS
  4. depends on !BR2_STATIC_LIBS
  5. help
  6. MicroPython is a lean and fast implementation of the Python
  7. 3 programming language that is optimised to run on a
  8. microcontroller.
  9. https://micropython.org
  10. if BR2_PACKAGE_MICROPYTHON
  11. config BR2_PACKAGE_MICROPYTHON_LIB
  12. bool "micropython-lib"
  13. select BR2_PACKAGE_PCRE2 # runtime
  14. help
  15. Core Python libraries ported to MicroPython.
  16. endif # BR2_PACKAGE_MICROPYTHON
  17. comment "micropython needs a toolchain w/ threads, dynamic library"
  18. depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS