Index of /mirrors/ftp.netbsd.org/NetBSD-release-9/src/external/bsd/llvm/dist/clang/bindings/python/
Name | Last Modified | Size | Type |
Parent Directory/ | | - | Directory |
CVS/ | 2024-Feb-14 19:51:34 | - | Directory |
clang/ | 2024-Feb-14 19:45:05 | - | Directory |
examples/ | 2024-Feb-14 19:45:05 | - | Directory |
tests/ | 2024-Feb-14 19:45:05 | - | Directory |
README.txt | 2018-Jul-17 20:31:54 | 0.6K | text/plain |
//===----------------------------------------------------------------------===//
// 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 any standard test
runner. For example:
--
$ env PYTHONPATH=$(echo ~/llvm/tools/clang/bindings/python/) \
LD_LIBRARY_PATH=$(llvm-config --libdir) \
python -m unittest discover -v
tests.cindex.test_index.test_create ... ok
...
OK
--