Skip to content

Commit

Permalink
README: fix install instructions on macOS (mozilla#1551)
Browse files Browse the repository at this point in the history
There's no `libssl3.so`, so the existing command sets the environment variable to an empty string.
  • Loading branch information
marten-seemann authored Jan 15, 2024
1 parent abf2636 commit faa0f24
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ To run test HTTP/3 programs (neqo-client and neqo-server):
* `./target/debug/neqo-client http://127.0.0.1:12345/`

If a "Failure to load dynamic library" error happens at runtime, do
```
```shell
export LD_LIBRARY_PATH="$(dirname "$(find . -name libssl3.so -print | head -1)")"
```
On a mac, use `DYLD_LIBRARY_PATH` instead.

On a macOS, do
```shell
export DYLD_LIBRARY_PATH="$(dirname "$(find . -name libssl3.dylib -print | head -1)")"
```

## Faster Builds with Separate NSS/NSPR

Expand Down

0 comments on commit faa0f24

Please sign in to comment.