34484a
From f6bc8fb3d26892ba1a84ba2df76beedd51998dd2 Mon Sep 17 00:00:00 2001
34484a
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
34484a
Date: Mon, 29 Jan 2018 16:34:17 +0100
34484a
Subject: [PATCH] hints/linux: Add -lphtread to lddlflags
34484a
MIME-Version: 1.0
34484a
Content-Type: text/plain; charset=UTF-8
34484a
Content-Transfer-Encoding: 8bit
34484a
34484a
Passing -z defs to linker flags causes perl to fail to build if threads are
34484a
enabled:
34484a
34484a
gcc  -shared -Wl,-z,relro -Wl,-z,defs -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -L/usr/local/lib -fstack-protector-strong Bzip2.o  -o ../../lib/auto/Compress/Raw/Bzip2/Bzip2.so  \
34484a
   -L/usr/lib64 -lbz2 "-L../.." -lperl   \
34484a
34484a
Bzip2.o: In function `deRef':
34484a
/builddir/build/BUILD/perl-5.26.1/cpan/Compress-Raw-Bzip2/Bzip2.xs:256: undefined reference to `pthread_getspecific'
34484a
34484a
The reason is Bzip2.xs calls dTHX macro included from thread.h via perl.h that
34484a
expands to pthread_getspecific() function call that is defined in pthread
34484a
library. But the pthread library is not explicitly linked to Bzip.so (see the
34484a
gcc command). This is exactly what -z defs linker flag enforces.
34484a
34484a
Underlinking ELFs can be dangerous because in case of versioned
34484a
symbols it can cause run-time binding to an improper version symbol or
34484a
even to an symbold from different library.
34484a
34484a
This patch fixes hints for Linux by adding -lpthreads to lddlflags. It
34484a
also adds -shared there because Configure.sh adds it only hints return
34484a
lddlflags empty.
34484a
34484a
<https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/message/3RHZEHLRUHJFF2XGHI5RB6YPDNLDR4HG/>
34484a
34484a
Signed-off-by: Petr Písař <ppisar@redhat.com>
34484a
---
34484a
 hints/linux.sh | 4 ++++
34484a
 1 file changed, 4 insertions(+)
34484a
34484a
diff --git a/hints/linux.sh b/hints/linux.sh
34484a
index 3f38ea07f1..9ec3bc02ef 100644
34484a
--- a/hints/linux.sh
34484a
+++ b/hints/linux.sh
34484a
@@ -353,12 +353,16 @@ if [ -f /etc/synoinfo.conf -a -d /usr/syno ]; then
34484a
     echo "$libswanted" >&4
34484a
 fi
34484a
 
34484a
+# Flags needed to produce shared libraries.
34484a
+lddlflags='-shared'
34484a
+
34484a
 # This script UU/usethreads.cbu will get 'called-back' by Configure
34484a
 # after it has prompted the user for whether to use threads.
34484a
 cat > UU/usethreads.cbu <<'EOCBU'
34484a
 case "$usethreads" in
34484a
 $define|true|[yY]*)
34484a
         ccflags="-D_REENTRANT -D_GNU_SOURCE $ccflags"
34484a
+        lddlflags="-lpthread $lddlflags"
34484a
         if echo $libswanted | grep -v pthread >/dev/null
34484a
         then
34484a
             set `echo X "$libswanted "| sed -e 's/ c / pthread c /'`
34484a
-- 
34484a
2.13.6
34484a