From: Alexander Kanavin Date: Sun, 17 Sep 2023 09:38:38 +0000 (+0200) Subject: perl: use 64 bit integers across all targets X-Git-Tag: yocto-4.3~324 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c99c1b92eb5fb76f22b3458df15d876748528a20;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git 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. Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/perl/perl_5.38.0.bb b/meta/recipes-devtools/perl/perl_5.38.0.bb index a8623b6e84b..956e4d64d70 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() { do_configure:class-target() { ./configure --prefix=${prefix} --libdir=${libdir} \ --target=${TARGET_SYS} \ + -Duse64bitint \ -Duseshrplib \ -Dusethreads \ -Dsoname=libperl.so.5 \