From: Nikolay Merinov Date: Thu, 5 Oct 2017 07:36:50 +0000 (+0500) Subject: perl-native: Provide correct lddlflags X-Git-Tag: uninative-1.8~1326 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=118f42fa92c29269395c53c931fa174ece1af2e0;p=openembedded-core.git perl-native: Provide correct lddlflags For shared libraries compilation perl uses LDDLFLAGS instead of LDFLAGS. Value for LDDLFLAGS can be provided through recipe-sysroot-native/usr/lib/perl-native/perl/config.sh file generated during perl-native compilation. With default LDDLFLAGS libxml-parser-perl-native package have no correct rpath in Expat.so module. Provide correct LDDLFLAGS for perl modules compilation to fix build on hosts without libexpat.so. Signed-off-by: Nikolay Merinov Signed-off-by: Ross Burton --- diff --git a/meta/recipes-devtools/perl/perl-native_5.24.1.bb b/meta/recipes-devtools/perl/perl-native_5.24.1.bb index e01d11fbed..6c56a7d701 100644 --- a/meta/recipes-devtools/perl/perl-native_5.24.1.bb +++ b/meta/recipes-devtools/perl/perl-native_5.24.1.bb @@ -32,6 +32,7 @@ do_configure () { -Dcc="${CC}" \ -Dcflags="${CFLAGS}" \ -Dldflags="${LDFLAGS}" \ + -Dlddlflags="${LDFLAGS} -shared" \ -Dcf_by="Open Embedded" \ -Dprefix=${prefix} \ -Dvendorprefix=${prefix} \