forked from OSchip/llvm-project
Add /System/Library/PrivateFrameworks as a header search path.
Addresses rdar://problem/34438708. llvm-svn: 313317
This commit is contained in:
parent
f0b11de279
commit
39cabf65ea
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue