clang-sys 0.5.2

Rust bindings for libclang.
docs.rs failed to build clang-sys-0.5.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: clang-sys-1.7.0

clang-sys

crates.io Travis CI

Rust bindings for libclang.

Supported on the stable, beta, and nightly Rust channels.

Released under the Apache License 2.0.

Dependencies

This crate depends on libclang.so (Linux), libclang.dylib (OS X), or libclang.dll (Windows). These binaries can be either be installed as a part of Clang or downloaded here.

The libclang binary will be searched for first by calling llvm-config --libdir. If this fails, the libclang binary will be searched for in likely places (e.g., /usr/local/lib/ on Linux). If neither of these approaches is successful, you can specify the directory the libclang binary can be found in with the LIBCLANG_PATH environment variable. The path to the llvm-config executable you want to use can be specified with the LLVM_CONFIG_PATH environment variable.

If you want to link to libclang statically, enable the static feature. You can specify the directory the various LLVM and Clang static libraries can be found in with the LIBCLANG_STATIC_PATH environment variable. This feature is not supported for LLVM + Clang 3.8.

Supported Versions

If you do not select a specific version, a common subset API will be availabile. The documentation for this API is here.