mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-12 11:19:08 -05:00
build: Add an old hack to remove bind_at_load from libtool.
Similar to a98356fee8
.
This commit is contained in:
parent
45257601da
commit
3c61c60b90
1 changed files with 11 additions and 0 deletions
11
configure.ac
11
configure.ac
|
@ -1969,6 +1969,17 @@ case ${OS} in
|
||||||
;;
|
;;
|
||||||
esac
|
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
|
||||||
echo "Options used to compile and link:"
|
echo "Options used to compile and link:"
|
||||||
echo " external signer = $use_external_signer"
|
echo " external signer = $use_external_signer"
|
||||||
|
|
Loading…
Add table
Reference in a new issue