summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfred Persson Forsberg <cat@catcream.org>2023-03-09 01:21:37 +0100
committerSam James <sam@gentoo.org>2023-03-11 17:23:20 +0000
commit6eb964b504c3aef2192403cbf383ae75d46990ff (patch)
tree022bcf45a1002bcc7ec4960e5ed1c33e8d64de7a /eclass/perl-module.eclass
parentsys-kernel/gentoo-sources: add 5.10.173 (diff)
downloadgentoo-6eb964b504c3aef2192403cbf383ae75d46990ff.tar.gz
gentoo-6eb964b504c3aef2192403cbf383ae75d46990ff.tar.bz2
gentoo-6eb964b504c3aef2192403cbf383ae75d46990ff.zip
perl-module.eclass: Fix linking with ld.lld
If LD is not specified then CCLD will be used as the linker. Setting CCLD to CC makes it correctly use LDFLAGS. Bug: https://bugs.gentoo.org/261375 Closes: https://bugs.gentoo.org/882373 Closes: https://bugs.gentoo.org/894608 Signed-off-by: Alfred Persson Forsberg <cat@catcream.org> Closes: https://github.com/gentoo/gentoo/pull/30009 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass/perl-module.eclass')
-rw-r--r--eclass/perl-module.eclass10
1 files changed, 7 insertions, 3 deletions
diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass
index d4f6bdc5191e..867c15225789 100644
--- a/eclass/perl-module.eclass
+++ b/eclass/perl-module.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: perl-module.eclass
@@ -21,11 +21,11 @@
case ${EAPI} in
7)
- inherit multiprocessing perl-functions
+ inherit multiprocessing perl-functions toolchain-funcs
PERL_EXPF="src_prepare src_configure src_compile src_test src_install"
;;
8)
- inherit multiprocessing perl-functions readme.gentoo-r1
+ inherit multiprocessing perl-functions readme.gentoo-r1 toolchain-funcs
PERL_EXPF="src_prepare src_configure src_compile src_test src_install"
;;
*)
@@ -209,6 +209,10 @@ perl-module_src_prepare() {
perl-module_src_configure() {
debug-print-function ${FUNCNAME} "$@"
+ # Perl runs LD with LDFLAGS
+ export CCLD=$(tc-getCC)
+ unset LD
+
perl_check_env
perl_set_version