2
1

Config.in 551 B

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