Follow-up on #1865

This commit is contained in:
Sukchan Lee
2022-11-12 09:37:43 +09:00
parent 4ba90fbd3b
commit 0859dd4453
126 changed files with 2510 additions and 886 deletions

View File

@@ -96,6 +96,7 @@ $ brew install mongo-c-driver gnutls libgcrypt libidn libyaml libmicrohttpd nght
Configure Homebrew PATH
```bash
$ export PATH="/opt/homebrew/opt/bison/bin:/opt/homebrew/bin:$PATH"
$ export PKG_CONFIG_PATH="/opt/homebrew/opt/openssl/lib/pkgconfig:$PKG_CONFIG_PATH"
$ export LIBRARY_PATH=/opt/homebrew/lib
$ export C_INCLUDE_PATH=/opt/homebrew/include
$ export CPLUS_INCLUDE_PATH=/opt/homebrew/include

View File

@@ -93,12 +93,17 @@ Install the depedencies for building the source code.
$ brew install mongo-c-driver gnutls libgcrypt libidn libyaml libmicrohttpd nghttp2 pkg-config libusrsctp libtins talloc
```
Install Bison and Create soft link.
Install Bison PATH
```bash
$ brew install bison
$ export PATH="/usr/local/opt/bison/bin:$PATH"
```
Configure OpenSSL PKG_CONFIG_PATH
```bash
$ export PKG_CONFIG_PATH="/usr/local/opt/openssl/lib/pkgconfig:$PKG_CONFIG_PATH"
```
Install Meson using Homebrew.
```bash
$ brew install meson