~blep/llvm/clang-win32

« back to all changes in this revision

Viewing changes to lib/Frontend/InitHeaderSearch.cpp

  • Committer: Teho
  • Date: 2009-08-14 12:12:03 UTC
  • Revision ID: teho@microtux-20090814121203-ykrlwuy7ho02dnj6
- fixed path to look-up MSVC headers

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
  // FIXME: get these from the target?
108
108
 
109
109
#ifdef LLVM_ON_WIN32
 
110
#if !defined(_MSC_VER)
110
111
  if (Lang.CPlusPlus) {
111
112
    // Mingw32 GCC version 4
112
113
    AddPath("c:/mingw/lib/gcc/mingw32/4.3.0/include/c++",
119
120
 
120
121
  // Mingw32 GCC version 4
121
122
  AddPath("C:/mingw/include", System, false, false, false);
 
123
#else // if !defined(_MSC_VER)
 
124
  AddPath("C:/wut/prg/vs9/VC/include", System, true, false, false);
 
125
#endif // if !defined(_MSC_VER)
122
126
#else
123
127
 
124
128
  if (Lang.CPlusPlus) {