Skip to content

Commit

Permalink
Add Visual Studio LLVM component directory to search paths (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleMayes committed Feb 10, 2021
1 parent b11a957 commit b739672
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [1.1.0] - UNRELEASED

### Changed
- Added Visual Studio LLVM component directory to search paths on Windows
([#121](https://github.com/KyleMayes/clang-sys/issues/121))

## [1.0.3] - 2020-11-19

### Fixed
Expand Down
3 changes: 3 additions & 0 deletions build/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ const DIRECTORIES_WINDOWS: &[&str] = &[
"C:\\LLVM\\lib",
"C:\\Program Files*\\LLVM\\lib",
"C:\\MSYS*\\MinGW*\\lib",
// LLVM + Clang can be installed as a component of Visual Studio.
// https://github.com/KyleMayes/clang-sys/issues/121
"C:\\Program Files*\\Microsoft Visual Studio\\*\\BuildTools\\VC\\Tools\\Llvm\\**\\bin",
];

thread_local! {
Expand Down

0 comments on commit b739672

Please sign in to comment.