mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-03 09:29:37 +00:00
Update macOS build instructions
This commit is contained in:
parent
d82905c460
commit
6d2c3df29a
1 changed files with 23 additions and 6 deletions
29
BUILDING.md
29
BUILDING.md
|
@ -151,22 +151,39 @@ The resulting binary can be found in `./build/x86_64-w64-mingw32/release/bin/`.
|
||||||
For macOS it's easiest to leverage [brew](https://brew.sh) to install the required dependencies.
|
For macOS it's easiest to leverage [brew](https://brew.sh) to install the required dependencies.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
HOMEBREW_OPTFLAGS="-march=core2" HOMEBREW_OPTIMIZATION_LEVEL="O0" \
|
brew install qt libsodium libzip qrencode unbound cmake boost hidapi openssl expat libunwind-headers protobuf pkgconfig zbar
|
||||||
brew install boost zmq openssl libpgm miniupnpc libsodium expat libunwind-headers protobuf libgcrypt qrencode ccache cmake pkgconfig git
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Clone the repository.
|
Build and install Polyseed:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://github.com/tevador/polyseed.git
|
||||||
|
cd polyseed
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake ..
|
||||||
|
make
|
||||||
|
sudo make install
|
||||||
|
```
|
||||||
|
|
||||||
|
Clone the Feather repository.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone --recursive https://github.com/feather-wallet/feather.git
|
git clone --recursive https://github.com/feather-wallet/feather.git
|
||||||
|
cd feather
|
||||||
```
|
```
|
||||||
|
|
||||||
Get the latest LTS from here: https://www.qt.io/offline-installers and install.
|
|
||||||
|
|
||||||
Build Feather.
|
Build Feather.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
CMAKE_PREFIX_PATH=~/Qt5.15.1/5.15.1/clang_64 make mac-release
|
make mac-release
|
||||||
```
|
```
|
||||||
|
|
||||||
The resulting macOS application can be found `build/bin/feather.app` and will **not** have Tor embedded.
|
The resulting macOS application can be found `build/bin/feather.app` and will **not** have Tor embedded.
|
||||||
|
|
||||||
|
To run a Tor daemon on macOS:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
brew install tor
|
||||||
|
brew services restart tor
|
||||||
|
```
|
Loading…
Reference in a new issue