openwrt-packages/lang/perl/files
Andy Syam 2484715985 perl: update to version 5.38.2
removed one that no longer exists in perl-5.38.2

updated one patch

fixed missing builtin.pm

Signed-off-by: Andy Syam <privasisource@gmail.com>
2023-12-01 11:18:10 -08:00
..
README.config lang/perl: Fix typos (found by codespell) 2016-04-09 19:47:45 +02:00
aarch64.config perl: add build config for aarch64 2018-01-26 00:40:17 +01:00
architecture.config perl: Switch to split configuration files 2015-09-01 09:23:15 +02:00
arm.config perl: update to 5.26.1 2017-10-24 11:40:34 -06:00
armeb.config perl: update to 5.26.1 2017-10-24 11:40:34 -06:00
base.config perl: update to version 5.38.0 2023-11-22 18:32:50 -08:00
i486.config perl: update to 5.26.1 2017-10-24 11:40:34 -06:00
libc.config perl: update to version 5.38.0 2023-11-22 18:32:50 -08:00
mips.config perl: update to 5.26.1 2017-10-24 11:40:34 -06:00
mips64.config perl: update to 5.26.1 2017-10-24 11:40:34 -06:00
mips64el.config perl: add missing config for mips64el 2018-12-18 21:28:26 -08:00
mipsel.config perl: update to 5.26.1 2017-10-24 11:40:34 -06:00
misc.config perl: Set gccversion configuration symbol correctly 2015-11-29 22:39:39 +01:00
perl-run_tests.sh perl: Improve run_tests.sh 2015-09-01 09:23:24 +02:00
perlconfig.pl lang/perl: Fix typos (found by codespell) 2016-04-09 19:47:45 +02:00
powerpc.config perl: update to 5.26.1 2017-10-24 11:40:34 -06:00
powerpc64.config perl: add powerpc64 support 2022-03-02 16:30:32 -08:00
riscv64.config perl: add support for riscv64 2023-10-22 23:29:03 -06:00
signal.config perl: Switch to split configuration files 2015-09-01 09:23:15 +02:00
threads.config perl: Switch to split configuration files 2015-09-01 09:23:15 +02:00
version.config perl: update to version 5.38.2 2023-12-01 11:18:10 -08:00
x86_64.config perl: update to 5.26.1 2017-10-24 11:40:34 -06:00

README.config

-- Perl configuration --

Perl uses a huge configuration file, normally generated via the Configure script
at build-time. This fails when cross-compiling though, so we need to supply our
own.

We're using perlconfig.pl to piece together the final configuration from a bunch
of configuration files(all ending in .config). Please refer to perlconfig.pl's
POD for information on usage and syntax.

Throughout the files, you will see a bunch of references to private symbols with
the prefix "owrt". These are used to control output in an effort to both
simplify writing configuration files, as well as to provide switchable options
to select the feature set of the resulting perl installation.

The following will be a summary/quick reference of all private symbols we're
currently using:

Passed via architecture configuration file(mipsel.config, i486.config, ...)
---------------------------------------------------------------------------
Symbol              Values              Description
owrt:bits           32/64               Target's native word length.
owrt:endian         little/big          Target's endianness.
owrt:arch           mipsel, i486, ...   Target's architecture name.
owrt:sig_count      64/128              Number of signals the target
                                        provides(NSIG - 1).
owrt:sigs           *                   Symbolic names of the first 32 signals
                                        this architecture provides, in numeric
                                        order. Separated by whitespaces.
owrt:sig_name_extra *                   Symbolic names of any additional signals
                                        this architecture provides after
                                        owrt:sig_count. Separated by
                                        whitespaces.
owrt:sig_num_extra  *                   Numeric values associated with the
                                        signal names provided in
                                        owrt:sig_name_extra. Separated by
                                        whitespaces.

Passed via command line
-----------------------
Symbol                Values              Description
owrt:libc             glibc/uclibc/musl   Which C library implementation is in
                                          use.
owrt:threads          yes/no              Whether to enable threading support.
owrt:ipv6             define/undef        Whether to enable IPv6 support.
owrt:target_cross     *                   Target architecture's host triplet.
owrt:target_cc        *                   C compiler to use.
owrt:gccversion       *                   target_cc's version number.
owrt:cflags           *                   Additional C compiler flags.
owrt:ldflags          *                   Additional linker flags.
owrt:staging_dir      *                   Same as OpenWRT buildroot's
                                          $(STAGING_DIR).
owrt:host_perl_prefix *                   host-perl installation prefix.

Passed via version.config
-------------------------
Symbol           Values              Description
owrt:perllibpath *                   Path to perl library files, from the
                                     target's point of view.