readme: update macOS build

This commit is contained in:
hinto.janai 2023-06-01 12:05:30 -04:00
parent 95287c003d
commit 786ed153e5
No known key found for this signature in database
GPG key ID: D47CE05FA175A499

View file

@ -630,14 +630,27 @@ This is the same as the `--release` profile, but with some changes:
--- ---
### macOS ### macOS
You'll need [`Xcode`](https://developer.apple.com/xcode/). You'll need [`Xcode`](https://developer.apple.com/xcode/) and [`brew`](https://brew.sh).
On macOS, if you want the binary to have an icon, you must install [`cargo-bundle`](https://github.com/burtonageo/cargo-bundle) and compile with: Due to an issue with some [TLS code](https://gitlab.torproject.org/tpo/core/arti/-/issues/715), Arti (Tor) needs to fall back to using OpenSSL instead of the native TLS.
These are statically linked into Gupax, so you'll need to have them on your system:
```bash
brew install pkg-config openssl
``` ```
If you want the binary to have an icon, you must use [`cargo-bundle`](https://github.com/burtonageo/cargo-bundle):
```
cargo install cargo-bundle
cargo bundle --release cargo bundle --release
``` ```
This bundles Gupax into a `Gupax.app`, the way it comes in the pre-built tars for macOS. This bundles Gupax into a `Gupax.app`, the way it comes in the pre-built tars for macOS.
To build only the binary:
```
cargo build --release
```
--- ---
### Windows ### Windows