mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-13 07:28:59 +01:00
build: Fix boost build on some platforms
When the libpath doesn't line up with the value from config.sub, we don't find
the correct path to boost's libs. This adds a hack to try another path before
giving up.
Should close #3219.
Rebased-From: 54c7df81
This commit is contained in:
committed by
Wladimir J. van der Laan
parent
f62031b895
commit
0991401cdd
@@ -67,6 +67,7 @@ Miscellaneous:
|
|||||||
- key.cpp: fail with a friendlier message on missing ssl EC support
|
- key.cpp: fail with a friendlier message on missing ssl EC support
|
||||||
- Remove bignum dependency for scripts
|
- Remove bignum dependency for scripts
|
||||||
- Upgrade OpenSSL to 1.0.1i (see https://www.openssl.org/news/secadv_20140806.txt - just to be sure, no critical issues for Bitcoin Core)
|
- Upgrade OpenSSL to 1.0.1i (see https://www.openssl.org/news/secadv_20140806.txt - just to be sure, no critical issues for Bitcoin Core)
|
||||||
|
- Fix boost detection in build system on some platforms
|
||||||
|
|
||||||
Credits
|
Credits
|
||||||
--------
|
--------
|
||||||
|
|||||||
@@ -112,6 +112,12 @@ if test "x$want_boost" = "xyes"; then
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
dnl some arches may advertise a cpu type that doesn't line up with their
|
||||||
|
dnl prefix's cpu type. For example, uname may report armv7l while libs are
|
||||||
|
dnl installed to /usr/lib/arm-linux-gnueabihf. Try getting the compiler's
|
||||||
|
dnl value for an extra chance of finding the correct path.
|
||||||
|
libsubdirs="lib/`$CXX -dumpmachine 2>/dev/null` $libsubdirs"
|
||||||
|
|
||||||
dnl first we check the system location for boost libraries
|
dnl first we check the system location for boost libraries
|
||||||
dnl this location ist chosen if boost libraries are installed with the --layout=system option
|
dnl this location ist chosen if boost libraries are installed with the --layout=system option
|
||||||
dnl or if you install boost with RPM
|
dnl or if you install boost with RPM
|
||||||
|
|||||||
Reference in New Issue
Block a user