diff options
author | merge-script <fanquake@gmail.com> | 2024-10-16 14:51:35 +0100 |
---|---|---|
committer | merge-script <fanquake@gmail.com> | 2024-10-16 14:51:35 +0100 |
commit | 99e041f86fde4219c0568e6c0e724a76ee398112 (patch) | |
tree | 2579960b1b0946c59f29dad0c423860c73ee79cf | |
parent | 21e2f06a1cc34667572bbe9e4654fc3ec6184646 (diff) | |
parent | 79aa8280b2edd6a153afa876ae4a5e9ead39dc88 (diff) |
Merge bitcoin/bitcoin#31099: doc: drop macOS LLVM install instructions
79aa8280b2edd6a153afa876ae4a5e9ead39dc88 doc: drop LLVM install instructions (fanquake)
Pull request description:
Followup from #31048.
ACKs for top commit:
maflcko:
lgtm ACK 79aa8280b2edd6a153afa876ae4a5e9ead39dc88
hebasto:
ACK 79aa8280b2edd6a153afa876ae4a5e9ead39dc88.
Tree-SHA512: 9404845cc9a17f85363ce893addadaaba839b4a37e1e3e64ad4a50eb237ffb78636970480ff2f486ff5bd1b3dba9b85bf3d6654a680b11c6832d17daf6dd6c0a
-rw-r--r-- | doc/build-osx.md | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/doc/build-osx.md b/doc/build-osx.md index 5456fd00fa..cb8e82dae8 100644 --- a/doc/build-osx.md +++ b/doc/build-osx.md @@ -1,15 +1,15 @@ # macOS Build Guide -**Updated for MacOS [14](https://www.apple.com/macos/sonoma/)** +**Updated for MacOS [15](https://www.apple.com/macos/macos-sequoia/)** -This guide describes how to build bitcoind, command-line utilities, and GUI on macOS +This guide describes how to build bitcoind, command-line utilities, and GUI on macOS. ## Preparation The commands in this guide should be executed in a Terminal application. macOS comes with a built-in Terminal located in: -``` +```bash /Applications/Utilities/Terminal.app ``` @@ -51,18 +51,6 @@ To install, run the following from your terminal: brew install cmake boost pkg-config libevent ``` -``` bash -brew install llvm -``` - -And append the following to the configure commands below: - -``` bash --DCMAKE_C_COMPILER="$(brew --prefix llvm)/bin/clang" -DCMAKE_CXX_COMPILER="$(brew --prefix llvm)/bin/clang++" -``` - -Try `llvm@17` if compilation fails with the default version of llvm. - ### 4. Clone Bitcoin repository `git` should already be installed by default on your system. |