diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2017-09-07 13:14:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-07 13:14:42 -0500 |
commit | dcd8385a41f6fd6d8f5208931c418cbc745672b4 (patch) | |
tree | cca4da0e511beba53c7d2a6d477f4e824e1f5171 | |
parent | cb1059786df114cae72b8baea038dc5ea638269d (diff) | |
parent | 34aecb95e81a7a1d4a1d3a02d9a5d7b9d4d3b362 (diff) |
Auto merge of #957 - fitzgen:no-ld-library-path, r=emilio
LD_LIBRARY_PATH is unnecessary; LIBCLANG_PATH is enough
r? @emilio
-rw-r--r-- | CONTRIBUTING.md | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d56ff777..9f0fcc6b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -67,14 +67,6 @@ versions of llvm, or specify the path of the desired libclang explicitly: $ export LIBCLANG_PATH=path/to/clang-3.9/lib ``` -On Linux and macOS, you may also need to add a path to `libclang.so` (usually -the same path as above) to library search path. This can be done as below: - -``` -$ export LD_LIBRARY_PATH=path/to/clang-3.9/lib # for Linux -$ export DYLD_LIBRARY_PATH=path/to/clang-3.9/lib # for macOS -``` - Additionally, you may want to build and test with the `testing_only_docs` feature to ensure that you aren't forgetting to document types and functions. CI will catch it if you forget, but the turn around will be a lot slower ;) |