summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2023-09-17 11:38:38 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-09-18 08:53:10 +0100
commita76f3746a345750556d7ff804a76c04d7568025a (patch)
treea20cc4e25007b1da12b3f68d47197d15ae232a77 /meta/recipes-devtools/perl
parent4d1461595a3494864dd98e41c2501db7c3690ae5 (diff)
downloadpoky-a76f3746a345750556d7ff804a76c04d7568025a.tar.gz
perl: use 64 bit integers across all targets
Otherwise perl would use 32 bit integers on 32 bit targets, causing loss of bits when copying 64 bit time_t into an internal representation. (From OE-Core rev: c99c1b92eb5fb76f22b3458df15d876748528a20) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/perl')
-rw-r--r--meta/recipes-devtools/perl/perl_5.38.0.bb1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/perl_5.38.0.bb b/meta/recipes-devtools/perl/perl_5.38.0.bb
index a8623b6e84..956e4d64d7 100644
--- a/meta/recipes-devtools/perl/perl_5.38.0.bb
+++ b/meta/recipes-devtools/perl/perl_5.38.0.bb
@@ -58,6 +58,7 @@ do_configure:prepend() {
58do_configure:class-target() { 58do_configure:class-target() {
59 ./configure --prefix=${prefix} --libdir=${libdir} \ 59 ./configure --prefix=${prefix} --libdir=${libdir} \
60 --target=${TARGET_SYS} \ 60 --target=${TARGET_SYS} \
61 -Duse64bitint \
61 -Duseshrplib \ 62 -Duseshrplib \
62 -Dusethreads \ 63 -Dusethreads \
63 -Dsoname=libperl.so.5 \ 64 -Dsoname=libperl.so.5 \