diff options
author | Nick Fitzgerald <fitzgen@gmail.com> | 2017-09-07 11:05:31 -0700 |
---|---|---|
committer | Nick Fitzgerald <fitzgen@gmail.com> | 2017-09-07 11:05:31 -0700 |
commit | 34aecb95e81a7a1d4a1d3a02d9a5d7b9d4d3b362 (patch) | |
tree | cca4da0e511beba53c7d2a6d477f4e824e1f5171 | |
parent | cb1059786df114cae72b8baea038dc5ea638269d (diff) |
LD_LIBRARY_PATH is unnecessary; LIBCLANG_PATH is enough
-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 ;) |