1config 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 9 http://www.perl.org/ 10 11if BR2_PACKAGE_PERL 12 13config BR2_PACKAGE_PERL_MODULES 14 string "custom module selection" 15 help 16 List of space-separated perl modules (without .pm) to copy 17 to the rootfs. 18 19 Examples: constant Getopt/Std Time/Local 20 21 Module dependencies on external libraries are not automatic so 22 check your needs. 23 24 Leave empty for all modules (as far as the external libraries 25 are available). 26 27config BR2_PACKAGE_PERL_THREADS 28 bool "thread support" 29 depends on BR2_TOOLCHAIN_HAS_THREADS 30 help 31 Enable use of threads in Perl scripts 32 33 WARNING: The use of interpreter-based threads in Perl 34 is officially discouraged. 35 See https://perldoc.perl.org/threads.html#WARNING 36 37endif 38