Releases: KyleMayes/clang-sys
Releases · KyleMayes/clang-sys
v1.9.0
v1.8.2
Changed
- Improved
Clang::find
to first check directories related to the runtime-loadedlibclang
instance (if any)
Fixed
- Fixed linking to
libclang
on Windows with MSYS2 - Fixed
Clang::find
to support both the-target
and--target
arguments
when using target-prefixedclang
binaries
v1.8.1
v1.8.0
Changed
- Bumped minimum supported Rust version (MSRV) to 1.60.0
- Added error logging when
CLANG_PATH
set but it isn't a full path to an executable - Removed reference to
libclang
3.5 in error message for attempting to call an unsupported function
Added
- Added
libcpp
Cargo feature which enables linking tolibc++
instead oflibstdc++
when linking tolibclang
statically on Linux or Haiku
Fixed
- Fixed handling of paths that contain characters that have special meaning in
glob patterns (e.g.,[
or]
) - Fixed
Clang::find
to support both the-target
and--target
arguments
when using target-prefixedclang
binaries
v1.7.0
v1.6.1
Fixed
- Improved error message when calling a
libclang
function that is not supported by the loadedlibclang
instance (rust-lang/rust-bindgen#2446)
v1.6.0
Changed
- MinGW directories are not searched for
libclang
instances on Windows when
compiling for an MSVC target - Bumped minimum supported Rust version (MSRV) to 1.51.0
- Changed Windows search directory preferences (
libclang
instances from
Visual Studio installs are now the lowest priority rather than the second
highest)