diff options
| author | iDunk5400 <iDunk5400@users.noreply.github.com> | 2019-09-07 21:35:53 +0200 |
|---|---|---|
| committer | iDunk5400 <iDunk5400@users.noreply.github.com> | 2019-09-09 10:00:47 +0200 |
| commit | e09dbc6089e8624bbee9cc394022d563878c9de1 (patch) | |
| tree | 3069351e3cefab2e2cfdf426ef342689fccd26ba | |
| parent | 1b93cb74bb351aea40140e60586bdb198695914d (diff) | |
| download | monzero-core-e09dbc6089e8624bbee9cc394022d563878c9de1.tar.gz monzero-core-e09dbc6089e8624bbee9cc394022d563878c9de1.tar.xz monzero-core-e09dbc6089e8624bbee9cc394022d563878c9de1.zip | |
depends: fix monero binaries Boost linking errors
It would try to link against host system Boost libs when building outside gitian. Tested with x86_64-linux-gnu target.
| -rw-r--r-- | contrib/depends/toolchain.cmake.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/depends/toolchain.cmake.in b/contrib/depends/toolchain.cmake.in index b748f5c55..0c0225cbe 100644 --- a/contrib/depends/toolchain.cmake.in +++ b/contrib/depends/toolchain.cmake.in @@ -40,14 +40,14 @@ SET(Protobuf_LIBRARY @prefix@/lib/libprotobuf.a CACHE FILEPATH "Protobuf library SET(ZMQ_INCLUDE_PATH @prefix@/include) SET(ZMQ_LIB @prefix@/lib/libzmq.a) -SET(BOOST_IGNORE_SYSTEM_PATHS_DEFAULT ON) -SET(BOOST_IGNORE_SYSTEM_PATH ON) +SET(Boost_IGNORE_SYSTEM_PATH ON) SET(BOOST_ROOT @prefix@) +SET(BOOST_INCLUDEDIR @prefix@/include) SET(BOOST_LIBRARYDIR @prefix@/lib) -SET(BOOST_IGNORE_SYSTEM_PATHS_DEFAULT OFF) -SET(BOOST_NO_SYSTEM_PATHS TRUE) -SET(BOOST_USE_STATIC_LIBS TRUE) -SET(BOOST_USE_STATIC_RUNTIME TRUE) +SET(Boost_IGNORE_SYSTEM_PATHS_DEFAULT OFF) +SET(Boost_NO_SYSTEM_PATHS ON) +SET(Boost_USE_STATIC_LIBS ON) +SET(Boost_USE_STATIC_RUNTIME ON) SET(OpenSSL_DIR @prefix@/lib) SET(ARCHITECTURE @arch@) |
