Config.in 930 B

12345678910111213141516171819202122232425262728293031323334353637
  1. config BR2_PACKAGE_PERL
  2. bool "perl"
  3. depends on BR2_USE_MMU # fork()
  4. help
  5. Larry Wall's Practical Extraction and Report Language
  6. An interpreted scripting language, known among some as
  7. "Unix's Swiss Army Chainsaw".
  8. http://www.perl.org/
  9. if BR2_PACKAGE_PERL
  10. config BR2_PACKAGE_PERL_MODULES
  11. string "custom module selection"
  12. help
  13. List of space-separated perl modules (without .pm) to copy
  14. to the rootfs.
  15. Examples: constant Getopt/Std Time/Local
  16. Module dependencies on external libraries are not automatic so
  17. check your needs.
  18. Leave empty for all modules (as far as the external libraries
  19. are available).
  20. config BR2_PACKAGE_PERL_THREADS
  21. bool "thread support"
  22. depends on BR2_TOOLCHAIN_HAS_THREADS
  23. help
  24. Enable use of threads in Perl scripts
  25. WARNING: The use of interpreter-based threads in Perl
  26. is officially discouraged.
  27. See https://perldoc.perl.org/threads.html#WARNING
  28. endif