1. 1532217 serialized diagnostics: implement full deserialization of clang diagnostics via the libclang API. by Ted Kremenek · 13 years ago
  2. 3ddef06 [libclang] Move implementation of functions for manipulation CXSourceLocations and CXSourceRanges into a separate file. by Ted Kremenek · 13 years ago
  3. 1edabbc [libclang] Add CXDiagnosticImpl to represent a super class for the implementation backing a CXDiagnostic. This allows CXStoredDiagnostic by Ted Kremenek · 13 years ago
  4. 4e7064f [libclang] Introduce a new high level API for indexing clients that assumes by Argyrios Kyrtzidis · 13 years ago
  5. aed123e [libclang] Introduce clang_findReferencesInFile which accepts a cursor, a file, by Argyrios Kyrtzidis · 13 years ago
  6. 6e80903 Fix CMake. by Argyrios Kyrtzidis · 13 years ago
  7. 9621019 [libclang] Fix linker error in buildbots. by Argyrios Kyrtzidis · 13 years ago
  8. 69325d5 [arcmt] Introduce new '-ccc-arcmt-migrate <path>' ARC migration driver option. by Argyrios Kyrtzidis · 13 years ago
  9. 944eadb Remove more unnecessary dependencies now that the Frontend -> ARCMigrate by Chandler Carruth · 13 years ago
  10. ba45fab Remove ARCMigrate from more builds that it isn't needed in now that the by Chandler Carruth · 13 years ago
  11. ae44642 ARCMigrate depends on libAnalysis, and on unhelpful linkers must appear by John McCall · 13 years ago
  12. 979b423 Grr. Of course libARCMigrate depends on libRewrite. This is a lot to be by John McCall · 13 years ago
  13. a586c74 libFrontend depends on ARCMigrate, so link it into libclang. by John McCall · 13 years ago
  14. 4656b63 libclang output name is now libclang. This solves a name collision by Oscar Fuentes · 13 years ago
  15. 6656457 Fix LIBCLANG_LINK_FLAGS for Darwin. by Oscar Fuentes · 13 years ago
  16. 0b34dba Build libclang as a static library too. Now tested on Windows! by Oscar Fuentes · 13 years ago
  17. d9e9b8f Reverting "Build libclang as a static library too." by Oscar Fuentes · 13 years ago
  18. 29f4bac Build libclang as a static library too. by Oscar Fuentes · 13 years ago
  19. 8435bf9 CMake: add version information into the clang executable and libclang by Douglas Gregor · 14 years ago
  20. 4b93d66 Re-instate r125819 and r125820 with no functionality change by Peter Collingbourne · 14 years ago
  21. 96b1d4b Revert 125820 and 125819 to fix PR9266. by Rafael Espindola · 14 years ago
  22. 906c73f Move CompilerInstance::LLVMContext and LLVMContext ownership to CodeGenAction by Peter Collingbourne · 14 years ago
  23. 886e160 CMake: LLVM_NO_RTTI must be obsolete now! by NAKAMURA Takumi · 14 years ago
  24. 5ffcf5d CMake: libclang shall be named libclang.so, not liblibclang.so. by Oscar Fuentes · 14 years ago
  25. ed12273 Move CXString creation/management routines into by Ted Kremenek · 14 years ago
  26. 560a921 Revert "CMake: Update to use standard CMake dependency tracking facilities instead" by Michael J. Spencer · 14 years ago
  27. 5a7f349 CMake: Update to use standard CMake dependency tracking facilities instead by Michael J. Spencer · 14 years ago
  28. ec9bf47 Clean up CMake dependencies by Douglas Gregor · 14 years ago
  29. 3064ef9 Implement CXCursor support for walking C++ base specifiers. This includes adding the API hooks clang_isVirtualBase() and clang_getCXXAccessSpecifier() to query properties of the base specifier. by Ted Kremenek · 14 years ago
  30. 95f3355 Add libclang API hook "clang_getIBOutletCollectionType" to query the collection type for iboutletcollection attributes. by Ted Kremenek · 14 years ago
  31. 1951085 Another step in the process of making the parser depend on Sema: by John McCall · 14 years ago
  32. 8572813 Reintroduce the serialization library, with fixed dependencies. by Sebastian Redl · 14 years ago
  33. 2d490f2 Don't pass -avoid-version to Darwin linker by Douglas Gregor · 14 years ago
  34. 73dfa3d Add Darwin dylib versioning support to libclang when build with CMake. by Douglas Gregor · 14 years ago
  35. 4156a4c Rename clang.dll to libclang.dll, to fix Windows build. by John Thompson · 14 years ago
  36. 746d991 don't make libclang depend on codegen. Patch by Peter Collingbourne! by Chris Lattner · 14 years ago
  37. eb5dc49 Teach the PrintFunctionNames example to be a proper module, so that by Douglas Gregor · 14 years ago
  38. 8e0ac17 Add CXType and an initial set of supporting functions to libclang. This exposes details of by Ted Kremenek · 14 years ago
  39. cdb65d8 Fix NON_ANSI_COMPILE_FLAGS setting, for MSVC. by Daniel Dunbar · 14 years ago
  40. f51f20f Rename 'CIndex' to 'libclang', since it has basically become our stable public by Daniel Dunbar · 14 years ago[Renamed (77%) from tools/CIndex/CMakeLists.txt]
  41. e42e987 Convert libCIndex to use the new native EXPORTED_SYMBOL_FILE mechanism. by Dan Gohman · 14 years ago
  42. 24f7e36 Use DEFINE_SYMBOL property to control dllexport/dllimport by Kovarththanan Rajaratnam · 14 years ago
  43. f14bee8 Teach CMake to put the CIndex header into the Xcode/MSVC project by Douglas Gregor · 15 years ago
  44. 5352ac0 Implement a diagnostics callback for the C interface to Clang, so that by Douglas Gregor · 15 years ago
  45. 16b55a7 Implement 'clang_getInclusions()' in CIndex. This API allows clients to walk the set of files included in a translation unit via the C API. by Ted Kremenek · 15 years ago
  46. a030b7c Eliminate CIndex's dependency on the Clang Index library, since we by Douglas Gregor · 15 years ago
  47. 16c440a Add CXCursor.[h,cpp]. These files will centralize the logic for creating/probing CXCursors. by Ted Kremenek · 15 years ago
  48. 1b6869a Split (mostly nonexistent) USR code out from the main CIndex logic. by Ted Kremenek · 15 years ago
  49. ab18893 Split code in CIndex.cpp into multiple source files, and remove some unnecessary #includes. by Ted Kremenek · 15 years ago
  50. 467f030 Normalize CIndex/c-index-test/index-test link lines in the hopes it will fix by Daniel Dunbar · 15 years ago
  51. 597e7c3 Add some missing libraries for CMake as well. by Daniel Dunbar · 15 years ago
  52. 2e06fc8 Changes for building as a Windows DLL by John Thompson · 15 years ago
  53. 63444b3 Try to unbreak MSVC build. by Benjamin Kramer · 15 years ago
  54. 2588830 Make sure that libCIndex links as a C++ library by Douglas Gregor · 15 years ago
  55. ac47bc7 CMake build support for libCIndex and c-index-test. The indexing tests by Douglas Gregor · 15 years ago