Skip to content
Snippets Groups Projects
Commit aa60f9ce authored by Douglas Gregor's avatar Douglas Gregor
Browse files

realpath'ify the mapping from header includes to module imports.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171516 91177308-0d34-0410-b5e6-96231b3b80d8
parent 34b33668
No related branches found
No related tags found
No related merge requests found
......@@ -158,7 +158,20 @@ Module *ModuleMap::findModuleForHeader(const FileEntry *File) {
const DirectoryEntry *Dir = File->getDir();
llvm::SmallVector<const DirectoryEntry *, 2> SkippedDirs;
#ifdef LLVM_ON_UNIX
// Note: as an egregious but useful hack we use the real path here, because
// frameworks moving from top-level frameworks to embedded frameworks tend
// to be symlinked from the top-level location to the embedded location,
// and we need to resolve lookups as if we had found the embedded location.
char RealDirName[PATH_MAX];
StringRef DirName;
if (realpath(Dir->getName(), RealDirName))
DirName = RealDirName;
else
DirName = Dir->getName();
#else
StringRef DirName = Dir->getName();
#endif
// Keep walking up the directory hierarchy, looking for a directory with
// an umbrella header.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment