1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-13 10:59:13 +02:00
openwrt-packages/lang/perl/Config.in
Doug Thomson 6db2fe93cd perl: enable threading support for aarch64 by default
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>
2022-12-14 22:13:40 +08:00

32 lines
834 B
Plaintext

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