summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2017-09-07 13:14:42 -0500
committerGitHub <noreply@github.com>2017-09-07 13:14:42 -0500
commitdcd8385a41f6fd6d8f5208931c418cbc745672b4 (patch)
treecca4da0e511beba53c7d2a6d477f4e824e1f5171
parentcb1059786df114cae72b8baea038dc5ea638269d (diff)
parent34aecb95e81a7a1d4a1d3a02d9a5d7b9d4d3b362 (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.md8
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 ;)