From 34aecb95e81a7a1d4a1d3a02d9a5d7b9d4d3b362 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Thu, 7 Sep 2017 11:05:31 -0700 Subject: [PATCH] LD_LIBRARY_PATH is unnecessary; LIBCLANG_PATH is enough --- CONTRIBUTING.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d56ff77780..9f0fcc6b26 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 ;)