Perl threads seem to be supported and working for aarch64, and including aarch64 here would allow packages like freeswitch-mod-perl to become available from the standard OpwnWrt package repository for popular routers such as the Linksys E8450 and Belkin RT3200. Signed-off-by: Doug Thomson <dwt62f+github@gmail.com>
31 lines
834 B
Text
31 lines
834 B
Text
menu "Configuration"
|
|
depends on PACKAGE_perl
|
|
|
|
config PERL_THREADS
|
|
bool "Enable threading support"
|
|
default y if (mips || mipsel || i386 || i686 || x86_64 || armeb || arm || aarch64)
|
|
default n
|
|
|
|
config PERL_TESTS
|
|
bool "Include perl tests"
|
|
default n
|
|
help
|
|
Include test suites for all perl packages.
|
|
|
|
This will increase the size of perl and related packages
|
|
considerably.
|
|
Test support is still in development. Some tests will fail,
|
|
others are just missing completely.
|
|
|
|
config PERL_NOCOMMENT
|
|
bool "Strip comments and pod sections from modules"
|
|
default y
|
|
help
|
|
Remove comments and pod sections for all perl packages.
|
|
|
|
This will descrease the size of perl libraries moderately.
|
|
|
|
Stripping occasionally gets confused and mangles valid code,
|
|
so disable this option if you're not pressed for space.
|
|
|
|
endmenu
|