YouCompleteMe/cpp/llvm/tools/clang/bindings/python
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00
..
clang Adding more llvm/clang files 2012-07-05 17:55:45 -07:00
examples/cindex Adding more llvm/clang files 2012-07-05 17:55:45 -07:00
tests Adding more llvm/clang files 2012-07-05 17:55:45 -07:00
README.txt Adding more llvm/clang files 2012-07-05 17:55:45 -07:00

//===----------------------------------------------------------------------===//
// Clang Python Bindings
//===----------------------------------------------------------------------===//

This directory implements Python bindings for Clang.

You may need to alter LD_LIBRARY_PATH so that the Clang library can be
found. The unit tests are designed to be run with 'nosetests'. For example:
--
$ env PYTHONPATH=$(echo ~/llvm/tools/clang/bindings/python/) \
      LD_LIBRARY_PATH=$(llvm-config --libdir) \
  nosetests -v
tests.cindex.test_index.test_create ... ok
...

OK
--