mirror of
https://github.com/nasa/trick.git
synced 2025-06-21 16:39:37 +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.
|
||||
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 ) {
|
||||
|
Reference in New Issue
Block a user