README.txt 572 B

1234567891011121314151617
  1. //===----------------------------------------------------------------------===//
  2. // Clang Python Bindings
  3. //===----------------------------------------------------------------------===//
  4. This directory implements Python bindings for Clang.
  5. You may need to alter LD_LIBRARY_PATH so that the Clang library can be
  6. found. The unit tests are designed to be run with 'nosetests'. For example:
  7. --
  8. $ env PYTHONPATH=$(echo ~/llvm/tools/clang/bindings/python/) \
  9. LD_LIBRARY_PATH=$(llvm-config --libdir) \
  10. nosetests -v
  11. tests.cindex.test_index.test_create ... ok
  12. ...
  13. OK
  14. --