Add /System/Library/PrivateFrameworks as a header search path.

Addresses rdar://problem/34438708.

llvm-svn: 313317
This commit is contained in:
Douglas Gregor 2017-09-14 23:38:44 +00:00
parent f0b11de279
commit 39cabf65ea
1 changed files with 1 additions and 0 deletions

View File

@ -484,6 +484,7 @@ void InitHeaderSearch::AddDefaultIncludePaths(const LangOptions &Lang,
if (triple.isOSDarwin()) {
AddPath("/System/Library/Frameworks", System, true);
AddPath("/Library/Frameworks", System, true);
AddPath("/System/Library/PrivateFrameworks", System, true);
}
}
}