We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b35c5ae commit aaa93b4Copy full SHA for aaa93b4
build.sh
@@ -1,3 +1,5 @@
1
+#!/usr/bin/env bash -vx
2
+
3
compiler=${1:-clang++}
4
# Go up one directory from 'build' to 'bitcoin'
5
pushd . || exit
@@ -13,7 +15,8 @@ pushd ./build || exit
13
15
14
16
if command -v brew &> /dev/null
17
then
- brew install llvm
18
+ brew install --verbose llvm
19
+ brew install --verbose cmake boost pkgconf libevent qt@6 qrencode zeromq capnp python
20
export LDFLAGS="-L/usr/local/opt/llvm/lib"
21
export CPPFLAGS="-I/usr/local/opt/llvm/include"
22
CC=$(brew --prefix llvm)/bin/clang CXX=$(brew --prefix llvm)/bin/clang++
@@ -25,4 +28,4 @@ fi
25
28
cmake -DCMAKE_CXX_STANDARD=20 -DCMAKE_CXX_COMPILER=$compiler -DBUILD_GUI=ON -LH -S ../
26
29
27
30
# Now, try to build again
-make
31
+make deploy install
0 commit comments