From 9f74e3908ba5e676c6d441032ea14338d65c4e58 Mon Sep 17 00:00:00 2001 From: xanoni <77220130+xanoni@users.noreply.github.com> Date: Mon, 18 Oct 2021 22:36:45 -0400 Subject: [PATCH] Update Darwin build instructions to reflect fixes See: - https://github.com/PurpleI2P/i2pd/pull/1700 - https://github.com/PurpleI2P/i2pd/pull/1698#issuecomment-946304938 --- docs/devs/building/unix.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/devs/building/unix.md b/docs/devs/building/unix.md index a21befb..a3e3acc 100644 --- a/docs/devs/building/unix.md +++ b/docs/devs/building/unix.md @@ -115,9 +115,17 @@ Requires [homebrew](http://brew.sh) brew install boost openssl@1.1 -Then build: +To build: - make HOMEBREW=1 + make HOMEBREW=1 -j8 # uses 8 threads + +To install into the system root (`/`): + + sudo make install HOMEBREW=1 + +To install into the Homebrew root (`/usr/local/`): + + sudo make install HOMEBREW=1 PREFIX=/usr/local FreeBSD -------