Exclude /sw (Fink directories from being processed by ICG. Refs#248

This commit is contained in:
John M. Penn 2016-06-10 14:49:56 -05:00
parent 0f7a396db1
commit af8548ce6a

View File

@ -93,6 +93,9 @@ void HeaderSearchDirs::AddCompilerBuiltInSearchDirs () {
// Homebrew on Macs puts everything in /usr/local/Cellar.
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 ) {