1. 2c395a8 CMake: Fix standalone Clang build, take two. by Jordan Rose · 11 years ago
  2. 237c145 Revert "CMake: Fix out-of-source build's symlinks." by Reid Kleckner · 11 years ago
  3. 383947c CMake: Fix out-of-source build's symlinks. by Jordan Rose · 11 years ago
  4. f65456f [autotools->cmake] Added support for building clang with an order file. by Michael Gottesman · 11 years ago
  5. 4857638 [autotools->cmake] Added support for creating the clang driver plist for OS X. by Michael Gottesman · 11 years ago
  6. c2f531a Add a cl.exe compatible driver mode by Hans Wennborg · 11 years ago
  7. ff62d64 Turn CLANG_ENABLE_{ARCMT,REWRITER,STATIC_ANALYZER} into proper options so that by Roman Divacky · 11 years ago
  8. d08f595 cmake: mark clang as needing exported symbol. by Rafael Espindola · 11 years ago
  9. 9cc935b The IRReader header is now part of its own library. Update the include by Chandler Carruth · 11 years ago
  10. 305c613 Split library clangRewrite into clangRewriteCore and clangRewriteFrontend. by Ted Kremenek · 12 years ago
  11. 675a4e1 CMake: clang should depend on clang-headers, or bin/clang would not work better. by NAKAMURA Takumi · 12 years ago
  12. b0d8671 Remove a goofy CMake hack and use the standard CMake facilities to by Chandler Carruth · 12 years ago
  13. e3bbfca Fix cmake build. by Rafael Espindola · 12 years ago
  14. aa0cd85 Structured comment parsing, first step. by Dmitri Gribenko · 12 years ago
  15. ba8be8c Kill the last vestiges of clangIndex by Douglas Gregor · 12 years ago
  16. 30660a8 Add new code migrator support for migrating existing Objective-C code to use by Ted Kremenek · 13 years ago
  17. 3d9000d cmake: create a relative symlink to clang, not absolute by Dylan Noblesmith · 13 years ago
  18. 82c3460 Create the clang++ symlink as a POST_BUILD custom command on clang. by Peter Collingbourne · 13 years ago
  19. 22a7dfe Add support for lazily linking bitcode files (using a new by Peter Collingbourne · 13 years ago
  20. 8f0e8d2 The ARC Migration Tool. All the credit goes to Argyrios and Fariborz for this. by John McCall · 13 years ago
  21. e8ba8d7 Wire up the -ftest-coverage and -fprofile-arcs flags to .gcno file emission (at by Nick Lewycky · 13 years ago
  22. 8435bf9 CMake: add version information into the clang executable and libclang by Douglas Gregor · 14 years ago
  23. a3f787c Put targets on folders, if the IDE supports the feature. by Oscar Fuentes · 14 years ago
  24. e817771 [analyzer] Introduce libclangStaticAnalyzerFrontend and move Checkers/AnalysisConsumer.cpp into Frontend lib. by Argyrios Kyrtzidis · 14 years ago
  25. 0a86d44 Add CMake dependencies so that LLVM_USED_LIBS order doesn't matter. by Jeffrey Yasskin · 14 years ago
  26. 886e160 CMake: LLVM_NO_RTTI must be obsolete now! by NAKAMURA Takumi · 14 years ago
  27. aadd04c CLANG_BINARY_DIR is not the same thing as LLVM_BINARY_DIR when Clang by Oscar Fuentes · 14 years ago
  28. 839e61a Remove the clang++ symlink with `make clean'. by Oscar Fuentes · 14 years ago
  29. 2114258 Chris Lattner has strong opinions about directory layout. :) by Ted Kremenek · 14 years ago
  30. 3a8f40e Rename headers: 'clang/GR' 'clang/EntoSA' and update Makefile. by Ted Kremenek · 14 years ago
  31. a7af5ea [analyzer] Refactoring: Move checkers into lib/GR/Checkers and their own library, libclangGRCheckers by Argyrios Kyrtzidis · 14 years ago
  32. bce30c5 [analyzer] Refactoring: lib/Checker -> lib/GR and libclangChecker -> libclangGRCore by Argyrios Kyrtzidis · 14 years ago
  33. fbfe899 Use a script for creating the clang++ executable. by Oscar Fuentes · 14 years ago
  34. 560a921 Revert "CMake: Update to use standard CMake dependency tracking facilities instead" by Michael J. Spencer · 14 years ago
  35. 5a7f349 CMake: Update to use standard CMake dependency tracking facilities instead by Michael J. Spencer · 14 years ago
  36. 1b7255d Move ExecuteCompilerInvocation to a new library FrontendTool by Peter Collingbourne · 14 years ago
  37. 1951085 Another step in the process of making the parser depend on Sema: by John McCall · 14 years ago
  38. 8572813 Reintroduce the serialization library, with fixed dependencies. by Sebastian Redl · 14 years ago
  39. 4557e47 Revert Sebastian's build-breaking patch. by Douglas Gregor · 14 years ago
  40. 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
  41. 5a9ac23 Fix cmake build. by Zhongxing Xu · 14 years ago
  42. 4cbbd94 Frontend: Add CodeGenAction support for handling LLVM IR. - This magically enables using 'clang -cc1' as a replacement for most of 'llvm-as', 'llvm-dis', 'llc' and 'opt' functionality. For example, 'llvm-as' is: $ clang -cc1 -emit-llvm-bc FOO.ll -o FOO.bc by Daniel Dunbar · 14 years ago
  43. 41b5b17 Driver/MC: Add 'clang -cc1as' integrated assembler tool, currently accepts approximately the same interface as 'llvm-mc'. by Daniel Dunbar · 14 years ago
  44. 40e7192 CMake: Fix DESTDIR-related installation problem on Windows, from the by Douglas Gregor · 14 years ago
  45. e89d1d5 Bring driver link order in CMake into alignment with the order in the Makefile. by Chandler Carruth · 15 years ago
  46. 1309f9a Split libAnalysis into two libraries: libAnalysis and libChecker. by Ted Kremenek · 15 years ago
  47. e83b4c1 Make CMake's clang++ installation respect DESTDIR, based on a patch by by Douglas Gregor · 15 years ago
  48. 2108577 Implement clang -cc1. by Daniel Dunbar · 15 years ago
  49. c88aa79 Put CompilerInvocation testing code in clang-cc instead of clang for now, I can't bear to link all of clang into 'clang' yet. :) by Daniel Dunbar · 15 years ago
  50. 6cef99d Try yet again to de-bork CMake Windows build w.r.t. clang++ by Douglas Gregor · 15 years ago
  51. 234e162 Try to fix CMake clang++ creation on Windows by Douglas Gregor · 15 years ago
  52. 217acbf Sketch some 'clang -cc1' support, for testing parts of CompilerInvocation. by Daniel Dunbar · 15 years ago
  53. c720a4d CMake goop to create clang++ symlink by Douglas Gregor · 15 years ago
  54. 7f7b748 CMake: Improve installation of Clang by Douglas Gregor · 15 years ago
  55. fbc2836 Make the clang executable target depend on clang-cc by Douglas Gregor · 15 years ago
  56. a43a21e Really fix cmake style builds. by Mike Stump · 16 years ago
  57. 7ec3daf Rename clang-driver to clang. by Daniel Dunbar · 16 years ago
  58. cbcd98b Add CMake files for tools/driver; I am just guessing here, can someone test/fix? by Daniel Dunbar · 16 years ago