[cfe-dev] DirectoryLookup.h related question.

Paolo Bolzoni bolzoni at cs.unipr.it
Tue Sep 30 07:26:42 PDT 2008


Hi everyone,

quoting from:
include/clang/Lex/DirectoryLookup.h

[...]
/// DirectoryLookup - This class represents one entry in the search list that
/// specifies the search order for directories in #include directives.  It
/// represents either a directory, a framework, or a headermap.
///
class DirectoryLookup {
public:
  enum LookupType_t {
    LT_NormalDir,
    LT_Framework,
    LT_HeaderMap
  };
private:
[...]

I know what a directory is...
I write `#include <fileX>' and the compiler seeks for fileX in its directories
list (the list is in InitHeaderSearch.cpp), but what a framework or a
headermap is in this context?

pb



More information about the cfe-dev mailing list