Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added a troubleshooting section for macOS mojave #312

Merged
merged 8 commits into from
Jun 5, 2019
18 changes: 18 additions & 0 deletions installation/on_mac_osx_using_homebrew.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,21 @@ you need to reinstall the command line tools and then select the default active
$ xcode-select --install
$ xcode-select --switch /Library/Developer/CommandLineTools
```

## Troubleshooting on macOS MacOS 10.14.2 (Mojave)
ctrl-dlahr marked this conversation as resolved.
Show resolved Hide resolved

if you get an error like:
ctrl-dlahr marked this conversation as resolved.
Show resolved Hide resolved

```
ld: library not found for -lssl (this usually means you need to install the development package for libssl)
```

you may need to install OpenSSL and link pkg-config to OpenSSL
ctrl-dlahr marked this conversation as resolved.
Show resolved Hide resolved

```
brew install openssl
```

```
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/opt/openssl/lib/pkgconfig
```
ctrl-dlahr marked this conversation as resolved.
Show resolved Hide resolved