From 6db2fe93cd9db6e1f26fded0c4fd4b1c58484e49 Mon Sep 17 00:00:00 2001 From: Doug Thomson Date: Sun, 11 Dec 2022 11:22:09 +1100 Subject: [PATCH] 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 --- lang/perl/Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/perl/Config.in b/lang/perl/Config.in index 65a3a47d71..e64d95a32d 100644 --- a/lang/perl/Config.in +++ b/lang/perl/Config.in @@ -3,7 +3,7 @@ menu "Configuration" config PERL_THREADS bool "Enable threading support" - default y if (mips || mipsel || i386 || i686 || x86_64 || armeb || arm) + default y if (mips || mipsel || i386 || i686 || x86_64 || armeb || arm || aarch64) default n config PERL_TESTS