]> granicus.if.org Git - clang/commitdiff
Attempt to unbreak the MSVC build.
authorDaniel Dunbar <daniel@zuster.org>
Sat, 17 Oct 2009 23:53:11 +0000 (23:53 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Sat, 17 Oct 2009 23:53:11 +0000 (23:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84381 91177308-0d34-0410-b5e6-96231b3b80d8

tools/CIndex/CIndex.cpp

index 8d09b527b826f9d1b47fe707fb61e8198ba2c0f5..6015ffdd4ca73b7f49bf976caf61c679777de655 100644 (file)
 #include "llvm/Support/MemoryBuffer.h"
 #include "llvm/System/Path.h"
 #include <cstdio>
+#ifndef _MSC_VER
 #include <dlfcn.h>
 #include <sys/wait.h>
+#endif
 #include <vector>
 
 using namespace clang;
@@ -288,6 +290,10 @@ static const char *clangPath;
 
 CXIndex clang_createIndex() 
 {
+  // FIXME: This is a hack to unbreak the MSVC build.
+#ifdef _MSC_VER
+  llvm::sys::Path CIndexPath("");
+#else
   // Find the location where this library lives (libCIndex.dylib).
   // We do the lookup here to avoid poking dladdr too many times.
   // This silly cast below avoids a C++ warning.
@@ -296,6 +302,7 @@ CXIndex clang_createIndex()
     assert(0 && "Call to dladdr() failed");
 
   llvm::sys::Path CIndexPath(info.dli_fname);
+#endif
   std::string CIndexDir = CIndexPath.getDirname();
   
   // We now have the CIndex directory, locate clang relative to it.
@@ -332,6 +339,10 @@ CXTranslationUnit clang_createTranslationUnitFromSourceFile(
   const char *source_filename,
   int num_command_line_args, const char **command_line_args) 
 {
+  // FIXME: This is a hack to unbreak the build.
+#ifdef _MSC_VER
+  return 0;
+#else
   // Build up the arguments for involing clang.
   std::vector<const char *> argv;
   argv.push_back(clangPath);
@@ -367,6 +378,7 @@ CXTranslationUnit clang_createTranslationUnitFromSourceFile(
                    clang_createTranslationUnit(CIdx, astTmpFile));
   ATU->unlinkTemporaryFile();
   return ATU;
+#endif
 }
 
 void clang_disposeTranslationUnit(