mirror of
https://github.com/nasa/trick.git
synced 2025-06-22 08:50:06 +00:00
Exclude /sw (Fink directories from being processed by ICG. Refs#248
This commit is contained in:
@ -93,6 +93,9 @@ void HeaderSearchDirs::AddCompilerBuiltInSearchDirs () {
|
|||||||
// Homebrew on Macs puts everything in /usr/local/Cellar.
|
// Homebrew on Macs puts everything in /usr/local/Cellar.
|
||||||
hso.AddPath("/usr/local/Cellar" , clang::frontend::System, IsFramework, IsSysRootRelative);
|
hso.AddPath("/usr/local/Cellar" , clang::frontend::System, IsFramework, IsSysRootRelative);
|
||||||
|
|
||||||
|
// Fink on Macs puts everything in /sw.
|
||||||
|
hso.AddPath("/sw" , clang::frontend::System, IsFramework, IsSysRootRelative);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void HeaderSearchDirs::AddUserSearchDirs ( std::vector<std::string> & include_dirs ) {
|
void HeaderSearchDirs::AddUserSearchDirs ( std::vector<std::string> & include_dirs ) {
|
||||||
|
Reference in New Issue
Block a user