Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: simplify macOS build guide #3580

Merged
merged 1 commit into from
Jul 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions doc/build-macos.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Building dogecoin-qt 1.14 on MacOS #
# Building Dogecoin Core on MacOS #

Tested on MacOs Ventura and Sonoma on Intel (x86_64) and Apple Silicon (arm64) macs.

Expand Down Expand Up @@ -35,9 +35,8 @@ chmod -R go-w "$(brew --prefix)/share/zsh"
Install dependencies via Brew.

```sh
brew install autoconf automake libtool miniupnpc openssl pkg-config protobuf@21 \
brew install autoconf automake libtool miniupnpc openssl pkg-config protobuf \
qt5 zeromq qrencode librsvg boost berkeley-db@5 libevent
brew link protobuf@21
```

### Go back to your Dogecoin repo ###
Expand All @@ -46,7 +45,7 @@ brew link protobuf@21
cd ~/dogecoin

./autogen.sh
./configure --with-gui=qt5 --with-boost=`brew --prefix boost`
./configure --enable-c++17 --with-gui --with-boost=`brew --prefix boost`
make
```

Expand Down