We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a10752e commit aac7e2fCopy full SHA for aac7e2f
3 files changed
.gitignore
@@ -61,3 +61,8 @@ libs/secp256k1/*
61
/cmake-build-debug-coverage/
62
/cmake-build-release
63
*.log
64
+
65
+# boost
66
+/boost*
67
+boost_1_78_0.tar.bz2
68
+boost_1_78_0.tar.gz
boost_1_78_0.tar.gz
doc/build-unix.md
@@ -58,7 +58,8 @@ install c2pool:
58
git clone https://github.com/frstrtr/c2pool.git
59
cd c2pool
60
mkdir build
-cmake -DCMAKE_BUILD_TYPE=Debug -S . -B build
+# Force CMake to use the newly installed Boost 1.78.0
+cmake -DCMAKE_BUILD_TYPE=Debug -DBoost_ROOT=/usr/ -DBoost_NO_SYSTEM_PATHS=ON -S . -B build
cmake --build build --target c2pool_main -j 6
```
0 commit comments