Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
clang/ | 22-Nov-2023 | - | 3,706 | 2,507 | ||
examples/cindex/ | 22-Nov-2023 | - | 147 | 93 | ||
tests/ | 22-Nov-2023 | - | 1,776 | 1,370 | ||
README.txt | D | 22-Nov-2023 | 572 | 18 | 14 |
README.txt
1//===----------------------------------------------------------------------===// 2// Clang Python Bindings 3//===----------------------------------------------------------------------===// 4 5This directory implements Python bindings for Clang. 6 7You may need to alter LD_LIBRARY_PATH so that the Clang library can be 8found. The unit tests are designed to be run with 'nosetests'. For example: 9-- 10$ env PYTHONPATH=$(echo ~/llvm/tools/clang/bindings/python/) \ 11 LD_LIBRARY_PATH=$(llvm-config --libdir) \ 12 nosetests -v 13tests.cindex.test_index.test_create ... ok 14... 15 16OK 17-- 18