1. 11abf2a clang/lib: [CMake] Update tblgen'd dependencies. by NAKAMURA Takumi · 12 years ago
  2. 866abce clang/lib: [CMake] Reformat, alphabetize lists. by NAKAMURA Takumi · 12 years ago
  3. 8d3ba23 Implement AST classes for comments, a real parser for Doxygen comments and a by Dmitri Gribenko · 12 years ago
  4. b0d8671 Remove a goofy CMake hack and use the standard CMake facilities to by Chandler Carruth · 12 years ago
  5. a08e7bc Zap the /Za compiler switch from MSVC projects, the option is considered harmful even by Microsoft people and clang won't build using the MSVC 2012 RC if not removed. by Francois Pichet · 12 years ago
  6. 6d89b4b Fix cmake. Remaining two ClangCC1Options deps. by Andrew Trick · 12 years ago
  7. 00fd5dd CMake: Fix build to add clangEdit to USED_LIBS. by NAKAMURA Takumi · 13 years ago
  8. c69a181 Introduce a -cc1 option "-dependency-graphviz" that determines header by Douglas Gregor · 13 years ago
  9. 453dbcb Extend the ExternalASTSource interface to allow the AST source to by Douglas Gregor · 13 years ago
  10. 3ff53b3 Update the CMake build for r146959's new files. by Chandler Carruth · 13 years ago
  11. 2898d4f Refactor 'TextDiagnostic' to have a parent class 'DiagnosticRenderer' which handles by Ted Kremenek · 13 years ago
  12. 71088d1 Move ChainedIncludesSource into the Frontend library. This never really by Chandler Carruth · 13 years ago
  13. 7800212 Start work on SerializedDiagnosticPrinter, a new DiagnosticConsumer that serializes out the diagnostics for a given translation unit to a bit code file. This is a WIP. by Ted Kremenek · 13 years ago
  14. db463bb Graduate the TextDiagnostic interface to its own header and source file, by Chandler Carruth · 13 years ago
  15. 621bc69 Rename VerifyDiagnosticsClient to VerifyDiagnosticConsumer as per issue 5397 by David Blaikie · 13 years ago
  16. 335a13f Add missing dependency by Peter Collingbourne · 13 years ago
  17. 3bd2138 Remove BoostCon-specific code from Clang. FWIW, I'm a fan of things like this living in a separate branch. by Jonathan D. Turner · 13 years ago
  18. f7f8188 Raise the ARCMT functionality in Clang into proper FrontendActions. by Chandler Carruth · 13 years ago
  19. 8f0e8d2 The ARC Migration Tool. All the credit goes to Argyrios and Fariborz for this. by John McCall · 13 years ago
  20. 7fee4cd Fix cmake build. by Rafael Espindola · 13 years ago
  21. 9df2349 Frontend: Sketch a LogDiagnosticPrinter object, and wire CC_LOG_DIAGNOSTICS to by Daniel Dunbar · 13 years ago
  22. a71acfe Also update CMakeList.txt by Argyrios Kyrtzidis · 13 years ago
  23. e6ec11a Remove the AST printer (-ast-print-xml), which is too incomplete and by Douglas Gregor · 14 years ago
  24. 0a86d44 Add CMake dependencies so that LLVM_USED_LIBS order doesn't matter. by Jeffrey Yasskin · 14 years ago
  25. 886e160 CMake: LLVM_NO_RTTI must be obsolete now! by NAKAMURA Takumi · 14 years ago
  26. eef63e0 Frontend: Factor out header include dumping (-H) into its own preprocessor by Daniel Dunbar · 14 years ago
  27. 2bc2121 Unbreak CMake build. by Ted Kremenek · 14 years ago
  28. 560a921 Revert "CMake: Update to use standard CMake dependency tracking facilities instead" by Michael J. Spencer · 14 years ago
  29. 5a7f349 CMake: Update to use standard CMake dependency tracking facilities instead by Michael J. Spencer · 14 years ago
  30. ec9bf47 Clean up CMake dependencies by Douglas Gregor · 14 years ago
  31. 5a97847 Add another missing CMake dependency. by Daniel Dunbar · 14 years ago
  32. bfae8bd Clean up some of the CMake dependencies by Douglas Gregor · 14 years ago
  33. 1b7255d Move ExecuteCompilerInvocation to a new library FrontendTool by Peter Collingbourne · 14 years ago
  34. 11e6f61 Fix CMake build by Sebastian Redl · 14 years ago
  35. 8572813 Reintroduce the serialization library, with fixed dependencies. by Sebastian Redl · 14 years ago
  36. 4557e47 Revert Sebastian's build-breaking patch. by Douglas Gregor · 14 years ago
  37. 93c9729 Create a new Serialization module that contains all the PCH code, and will contain all the module code in the future. Update the Makefiles, CMake projects and the Xcode project. I hope I did everything right for Xcode. No functionality change. by Sebastian Redl · 14 years ago
  38. 8eb2b01 Frontend: Move the bulk of the cc1_main() processing into by Daniel Dunbar · 14 years ago
  39. 87c3007 Eliminate the "minimal" and printing parser actions, which only ever by Douglas Gregor · 14 years ago
  40. ee6e4b4 Update CMake build for new attribute changes. by Sean Hunt · 14 years ago
  41. 9b414d3 Break Frontend's dependency on Rewrite, Checker and CodeGen in shared library configuration by Daniel Dunbar · 14 years ago
  42. 897c676 Frontend: Factor clang::EmitBackendOutput out of CodeGenAction. by Daniel Dunbar · 14 years ago
  43. 9a55591 Convert DeclNodes to use TableGen. by Sean Hunt · 14 years ago
  44. f78cc43 Add a stub frontend action for BoostCon, for next week's workshop. by Douglas Gregor · 14 years ago
  45. 71b1d0e Unbreak CMake build. by Douglas Gregor · 14 years ago
  46. cdfe268 Update CMake makefiles by Douglas Gregor · 15 years ago
  47. 9bed879 Introduce a testbed for merging multiple ASTs into a single AST by Douglas Gregor · 15 years ago
  48. 49ac8e6 Remove RewriteBlocks. It has been superseded by RewriteObjC by Kovarththanan Rajaratnam · 15 years ago
  49. f51ac1b Factor out a LangStandard class and coalesce the information about the standards into LangStandards.def by Daniel Dunbar · 15 years ago
  50. b3375cb Add initial cut at CompilerInvocation::toArgs, which "serializes" the CompilerInvocation into a list of arguments which can be passed to clang-cc (eventually, clang -cc1). by Daniel Dunbar · 15 years ago
  51. 8305d01 Add FrontendActions, which provides a FrontendAction interface to all the existing AST consumer based clang-cc actions. by Daniel Dunbar · 15 years ago
  52. 4ee2409 Add FrontendAction interface, for encapsulating a "clang-cc" style action. by Daniel Dunbar · 15 years ago
  53. 81f5a1e Add VerifyDiagnosticsClient, to replace old -verify. by Daniel Dunbar · 15 years ago
  54. 2a79e16 Add CompilerInstance, and starting moving clang-cc to it. by Daniel Dunbar · 15 years ago
  55. fbe2faf Move input kind identification (-x) into FrontendOptions. by Daniel Dunbar · 15 years ago
  56. f465e85 Move the ManagerRegistry to the Analysis library to resolve the layering violation. by Chandler Carruth · 15 years ago
  57. 620d57a Fixup windows include paths. Patch by John Thompson. by Mike Stump · 15 years ago
  58. b3b7364 Lexically order files in CMakeLists.txt files. by Ted Kremenek · 15 years ago
  59. 0daea7a Update CMake files. by Argyrios Kyrtzidis · 15 years ago
  60. 53d4c14 Introduce the ResolveLocationInAST function which takes an ASTContext and a SourceLocation and it resolves it into a <Decl*, Stmt*> pair. by Argyrios Kyrtzidis · 15 years ago
  61. f391e09 Add missing dependencies to the CMake build system by Douglas Gregor · 15 years ago
  62. 9336bcf Update CMakeLists.txt by Argyrios Kyrtzidis · 15 years ago
  63. 3c092bc Fix some TableGen-related dependencies for the Clang CMake build by Douglas Gregor · 15 years ago
  64. 0adea82 Add some missing CMake dependencies by Douglas Gregor · 15 years ago
  65. 038f75a More XML output support, from Olaf Krzikalla! by Douglas Gregor · 15 years ago
  66. 100bb76 Fix CMake build for AST XML dumper by Douglas Gregor · 15 years ago
  67. 0ec78fa Move AnalysisConsumer.h and Analyses.def from tools/clang-cc to by Eli Friedman · 15 years ago
  68. ba60149 CMake updates for r72099; untested, so please tell me if there are any issues. by Eli Friedman · 15 years ago
  69. 2aa39cd Attempted CMake build fixes for r72060; this is untested, so please tell by Eli Friedman · 15 years ago
  70. 63377d5 split expr/stmt writing out to PCHWriterStmt.cpp by Chris Lattner · 15 years ago
  71. 12b1c76 split decl writing out to its own PCHWriterDecl.cpp file. by Chris Lattner · 15 years ago
  72. 698f925 split decl reading out to its own PCHReaderDecl.cpp file. by Chris Lattner · 15 years ago
  73. 4c6f952 split stmt/expr deserialization out to PCHReaderStmt.cpp by Chris Lattner · 15 years ago
  74. e116ccf Split preprocessor initialization logic out of clang-cc into by Chris Lattner · 15 years ago
  75. f120251 Add PCH sources to CMake build files by Douglas Gregor · 15 years ago
  76. 837a406 Some cleanups to the fix-it rewriter. Thanks, Chris by Douglas Gregor · 15 years ago
  77. a43a21e Really fix cmake style builds. by Mike Stump · 15 years ago
  78. e1bd4e6 Rename lib/Driver (etc) to lib/Frontend in prep for the *actual* by Daniel Dunbar · 16 years ago[Renamed from lib/Driver/CMakeLists.txt]
  79. 4310ff6 Minor update to CMake build system. by Eli Friedman · 16 years ago
  80. e839b15 Update CMakeLists.txt by Cedric Venet · 16 years ago
  81. d2f4e5e CMake: Builds and installs clang binary and libs (no docs yet). It by Oscar Fuentes · 16 years ago