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