From 71f5b9f0e8e459f9060c741559bf6b3dbc88e79b Mon Sep 17 00:00:00 2001 From: Patrick Lodder Date: Sun, 7 Jul 2024 23:41:13 -0400 Subject: [PATCH] doc: simplify macOS build guide --- doc/build-macos.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/doc/build-macos.md b/doc/build-macos.md index b844cdbf6..7fc327816 100644 --- a/doc/build-macos.md +++ b/doc/build-macos.md @@ -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. @@ -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 ### @@ -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 ```