Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Waldemar Brodkorb <wbx@openadk.org>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH] uclibc: fix static linking of pthread apps for x86/x86_64
Date: Wed, 22 Jul 2015 18:13:26 +0200	[thread overview]
Message-ID: <20150722161325.GA7861@waldemar-brodkorb.de> (raw)

Fixes:
http://autobuild.buildroot.net/results/182424bd2fea36af95eea31f7dd53f0399433616/
http://autobuild.buildroot.net/results/6b1e2132a34e0c263bb0f2ea31caf4ce697e9c9c/

Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
---
 .../uclibc/1.0.4/0001-fix-static-linking-bug.patch |   64 ++++++++++++++++++++
 1 file changed, 64 insertions(+)
 create mode 100644 package/uclibc/1.0.4/0001-fix-static-linking-bug.patch

diff --git a/package/uclibc/1.0.4/0001-fix-static-linking-bug.patch b/package/uclibc/1.0.4/0001-fix-static-linking-bug.patch
new file mode 100644
index 0000000..a580a67
--- /dev/null
+++ b/package/uclibc/1.0.4/0001-fix-static-linking-bug.patch
@@ -0,0 +1,64 @@
+From 76513cbe06ec45d6cf0310c00eaf71d3250ed57f Mon Sep 17 00:00:00 2001
+From: Waldemar Brodkorb <wbx@uclibc-ng.org>
+Date: Wed, 22 Jul 2015 14:54:07 +0200
+Subject: [PATCH] fix static builds of pthread apps for x86/x86_64
+
+Found via buildroot autobuilder.
+
+Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
+---
+ libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S |    6 ++++++
+ libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S    |    6 ++++++
+ 2 files changed, 12 insertions(+)
+
+diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S b/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S
+index f38703b..ff9a784 100644
+--- a/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S
++++ b/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S
+@@ -70,6 +70,9 @@
+ 	.globl	__lll_lock_wait_private
+ 	.type	__lll_lock_wait_private, at function
+ 	.hidden	__lll_lock_wait_private
++#ifndef IS_IN_libpthread
++	.weak	__lll_lock_wait_private
++#endif
+ 	.align	16
+ __lll_lock_wait_private:
+ 	cfi_startproc
+@@ -320,6 +323,9 @@ __lll_timedlock_wait:
+ 	.globl	__lll_unlock_wake_private
+ 	.type	__lll_unlock_wake_private, at function
+ 	.hidden	__lll_unlock_wake_private
++#ifndef IS_IN_libpthread
++	.weak	__lll_unlock_wake_private
++#endif
+ 	.align	16
+ __lll_unlock_wake_private:
+ 	cfi_startproc
+diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S b/libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S
+index 50aacea..894c683 100644
+--- a/libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S
++++ b/libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S
+@@ -75,6 +75,9 @@
+ 	.globl	__lll_lock_wait_private
+ 	.type	__lll_lock_wait_private, at function
+ 	.hidden	__lll_lock_wait_private
++#ifndef IS_IN_libpthread
++	.weak   __lll_lock_wait_private
++#endif
+ 	.align	16
+ __lll_lock_wait_private:
+ 	cfi_startproc
+@@ -317,6 +320,9 @@ __lll_timedlock_wait:
+ 	.globl	__lll_unlock_wake_private
+ 	.type	__lll_unlock_wake_private, at function
+ 	.hidden	__lll_unlock_wake_private
++#ifndef IS_IN_libpthread
++	.weak	__lll_unlock_wake_private
++#endif
+ 	.align	16
+ __lll_unlock_wake_private:
+ 	cfi_startproc
+-- 
+1.7.10.4
+
-- 
1.7.10.4

             reply	other threads:[~2015-07-22 16:13 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-22 16:13 Waldemar Brodkorb [this message]
2015-07-22 20:38 ` [Buildroot] [PATCH] uclibc: fix static linking of pthread apps for x86/x86_64 Thomas Petazzoni
2015-07-28  8:31 ` Thomas Petazzoni

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150722161325.GA7861@waldemar-brodkorb.de \
    --to=wbx@openadk.org \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox