aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2023-01-26 11:20:38 +0000
committerfanquake <fanquake@gmail.com>2023-02-13 14:16:58 +0000
commitc49f2b8eb5d70aea76e2aa06cdfcb2cc9fa1cb53 (patch)
tree456a5e02740080abc39397a166f8ba0bcbef0060 /contrib
parent74c989398971864afc7098818262ff0b76fbcf71 (diff)
downloadbitcoin-c49f2b8eb5d70aea76e2aa06cdfcb2cc9fa1cb53.tar.xz
guix: remove no-longer needed powerpc workaround
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/guix/libexec/build.sh7
1 files changed, 0 insertions, 7 deletions
diff --git a/contrib/guix/libexec/build.sh b/contrib/guix/libexec/build.sh
index f2be3677eb..08a6c72a95 100755
--- a/contrib/guix/libexec/build.sh
+++ b/contrib/guix/libexec/build.sh
@@ -238,13 +238,6 @@ case "$HOST" in
*mingw*) HOST_LDFLAGS="-Wl,--no-insert-timestamp" ;;
esac
-# Using --no-tls-get-addr-optimize retains compatibility with glibc 2.18, by
-# avoiding a PowerPC64 optimisation available in glibc 2.22 and later.
-# https://sourceware.org/binutils/docs-2.35/ld/PowerPC64-ELF64.html
-case "$HOST" in
- *powerpc64*) HOST_LDFLAGS="${HOST_LDFLAGS} -Wl,--no-tls-get-addr-optimize" ;;
-esac
-
# Make $HOST-specific native binaries from depends available in $PATH
export PATH="${BASEPREFIX}/${HOST}/native/bin:${PATH}"
mkdir -p "$DISTSRC"