0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-08 10:31:50 -05:00

build: Add an old hack to remove bind_at_load from libtool.

Similar to a98356fee8.
This commit is contained in:
Cory Fields 2023-11-03 16:46:07 +00:00 committed by fanquake
parent 45257601da
commit 3c61c60b90
No known key found for this signature in database
GPG key ID: 2EEB9F5CC09526C1

View file

@ -1969,6 +1969,17 @@ case ${OS} in
;;
esac
dnl An old hack similar to a98356fee to remove hard-coded
dnl bind_at_load flag from libtool
case $host in
*darwin*)
AC_MSG_RESULT([Removing -Wl,bind_at_load from libtool.])
sed < libtool > libtool-2 '/bind_at_load/d'
mv libtool-2 libtool
chmod 755 libtool
;;
esac
echo
echo "Options used to compile and link:"
echo " external signer = $use_external_signer"