1. 532c1ec Driver: Eliminate Arg subclasses, which are now unnecessary. by Daniel Dunbar · 14 years ago
  2. 6c6424b Driver: Support invoking Clang on .ll or .bc inputs. by Daniel Dunbar · 14 years ago
  3. be1cc3e Driver/Darwin: Model dsymutil properly, as a separate action/tool kind which is by Daniel Dunbar · 14 years ago
  4. 9fcbc05 Driver: When printing a "command was signalled" type of diagnostic, use the by Daniel Dunbar · 14 years ago
  5. eb840bd Driver: Enable -integrated-as by default, at least for Darwin/x86 without -static. by Daniel Dunbar · 14 years ago
  6. c3d26cc add a new --print-diagnostic-categories option, which causes the driver to by Chris Lattner · 14 years ago
  7. 60a53f2 Driver: Add a Tool::hasGoodDiagnostics hook, and use it to simplify logic for by Daniel Dunbar · 14 years ago
  8. 5d93ed3 Driver: Add support for a CLANGXX_IS_PRODUCTION build variable, which enable by Daniel Dunbar · 14 years ago
  9. 48ad609 Add very limited support for GCC's '-B' flag. This allows us to support unusual by Chandler Carruth · 14 years ago
  10. 4c00fcd Driver: Support CC_PRINT_OPTIONS, used for logging the compile commands (in -v style) to a file. by Daniel Dunbar · 14 years ago
  11. 32c1a2a Driver: Free Action objects. by Daniel Dunbar · 14 years ago
  12. 3a47c4e add TCE target support, patch by Pekka J! by Chris Lattner · 14 years ago
  13. 43302d4 Driver: Allow driver title (for --help) to be overridden by clients. by Daniel Dunbar · 15 years ago
  14. 51679c5 PR5803: clang++: Treat untyped 'C' inputs as C++. by Daniel Dunbar · 15 years ago
  15. 6495250 Driver: Add -rewrite-objc, which is an interface to clang -cc1 -rewrite-objc. by Daniel Dunbar · 15 years ago
  16. e9c7b9e Driver: Fix infinite loop and wrong message on invalid -ccc-clang-arch argument. by Daniel Dunbar · 15 years ago
  17. 8767cbc Driver: Add -[no-]integrated-as for clang. by Daniel Dunbar · 15 years ago
  18. 3bd54cc ASTUnit: Don't check that input files exist when parsing ASTs from the command by Daniel Dunbar · 15 years ago
  19. a18f1b8 Rename getClangFullVendorVersion() to getClangFullVersion(). by Ted Kremenek · 15 years ago
  20. 3687a5d Move version string generation (e.g., "clang 1.1 ...") to libBasic/Version.cpp, getClangFullVendorVersion(). by Ted Kremenek · 15 years ago
  21. f7a96a3 (1) Rename getClangSubversionRevision() to getClangRevision(), and by Ted Kremenek · 15 years ago
  22. 517e676 Rename getClangSubversionPath() -> getClangRepositoryPath() and have it return a StringRef. by Ted Kremenek · 15 years ago
  23. 225c417 Driver: Lift clang resource directory computation to the Driver object. by Daniel Dunbar · 15 years ago
  24. 4d7b147 Fix possible memory leak by using an OwningPtr. by Ted Kremenek · 15 years ago
  25. 54d76db Remove some dead variables clang-analyzer found. by Benjamin Kramer · 15 years ago
  26. 73ba9a6 Driver: Fix '... -O4 -O0 ...', which was generating bitcode. by Daniel Dunbar · 15 years ago
  27. f360138 Driver: When linking, don't warn about unused arguments which are obviously only by Daniel Dunbar · 15 years ago
  28. e3fdca2 Remove several .c_str() to be forward-compatible with StringRef. by Jeffrey Yasskin · 15 years ago
  29. 7ca7987 Shorten the help test for -no-canonical-prefixes, put it behind HelpHidden and by Rafael Espindola · 15 years ago
  30. f5431e3 Unbreak -ccc-cxx and -ccc-clang-cxx defaulting. by Daniel Dunbar · 15 years ago
  31. 8477ee9 Driver: Switch -ccc-* options to using the standard options functionality. by Daniel Dunbar · 15 years ago
  32. 60e107f Add OptTable::PrintHelp. by Daniel Dunbar · 15 years ago
  33. cdd9686 What the FIXMEs want, the FIXMEs shall have. by Daniel Dunbar · 15 years ago
  34. 847abaa Factor out OptTable::ParseArgs, for parsing an entire argument vector. by Daniel Dunbar · 15 years ago
  35. 265e9ef Driver: ArgList doesn't depend on Options.h anymore. by Daniel Dunbar · 15 years ago
  36. e4bdae7 Driver: Switch to using explicit {getLast,has}ArgNoClaim functions instead of taking a Claim argument. by Daniel Dunbar · 15 years ago
  37. b827a05 Use Option::matches instead of direct ID comparison. by Daniel Dunbar · 15 years ago
  38. 27e738d Driver: Split OptTable out into OptTable.{h,cpp} by Daniel Dunbar · 15 years ago
  39. a79a2b5 Driver: Rework OptTable to have no dependency on the options it manages. by Daniel Dunbar · 15 years ago
  40. 5b8cdb5 Allow customization for the version line. by Mike Stump · 15 years ago
  41. b8d1191 Provide a common set of routines in Version.h that return Subversion by Douglas Gregor · 15 years ago
  42. f44c585 Push "clang-is-production" logic up to tools/driver, and make it hittable by by Daniel Dunbar · 15 years ago
  43. 634b245 Improve driver error message when only running the preprocessor and an input is by Daniel Dunbar · 15 years ago
  44. 5ed34f4 Change Get{File,Program}Path to return an std::string (instead of a sys::Path). by Daniel Dunbar · 15 years ago
  45. 4954018 Push bound architecture name into Compilation::getArgsForToolChain. by Daniel Dunbar · 15 years ago
  46. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  47. 36df290 Validate arguments to -arch. by Daniel Dunbar · 15 years ago
  48. d7502d0 Rename HostInfo::getToolChain to HostInfo::CreateToolChain, and don't recreate by Daniel Dunbar · 15 years ago
  49. 3f30ddf Simplify. by Daniel Dunbar · 15 years ago
  50. a6046be Fix ShouldUseClangCompiler to use llvm::Triple. by Daniel Dunbar · 15 years ago
  51. a823183 Tweak & reflow comments, and delete trailing whitespace. by Daniel Dunbar · 15 years ago
  52. da64141 Add -ccc-install-dir option for faking installation path. by Daniel Dunbar · 15 years ago
  53. 4f711c4 Update. by Mike Stump · 15 years ago
  54. 5915fbf Add driver support for -emit-ast and AST compilation steps. by Daniel Dunbar · 15 years ago
  55. b1e5e66 Remove arch normalization from Driver, this should be unnecessary now that by Daniel Dunbar · 15 years ago
  56. d57a7ef API changes to match llvm ToT. by Chris Lattner · 15 years ago
  57. 8bde505 Reenable clang using clang-cc for C++ and all archs by default. by Daniel Dunbar · 15 years ago
  58. 4a12408 Temporarily switch clang back to not using clang-cc by default for C++, and only by Daniel Dunbar · 15 years ago
  59. e7925a0 Second half of, clang, AuroraUX toolchain support. by Edward O'Callaghan · 15 years ago
  60. dfaf4b3 Switch the driver back to always using clang-cc by default (for C++, and by Daniel Dunbar · 15 years ago
  61. 7930072 driver: Print --version on stdout, to match gcc. - Patch by Jean-Daniel Dupas by Daniel Dunbar · 15 years ago
  62. c88a88f Driver: Move Compilation::Execute to Driver::ExecuteCompilation. by Daniel Dunbar · 15 years ago
  63. f7b8eec OpenBSD support. - Patch by Jonathan Gray! by Daniel Dunbar · 15 years ago
  64. 3ee96ba Stub out printing of the thread model with -v. by Daniel Dunbar · 15 years ago
  65. 12cfe03 Fake support for -print-multi-* by Daniel Dunbar · 15 years ago
  66. 6b3454a Fix for PR4140: Add the start of a Linux toolchain (basically, just by Eli Friedman · 15 years ago
  67. cb8ab23 (llvm up) Use llvm::Triple for storing target triples. by Daniel Dunbar · 15 years ago
  68. 683ca38 Reformat a comment by Daniel Dunbar · 15 years ago
  69. 63be57a Add --analyze-auto. by Daniel Dunbar · 15 years ago
  70. 11e1b40 DragonFly ToolChain definition for driver. - Patch by Alex Hornung! by Daniel Dunbar · 15 years ago
  71. 866cdc3 Revert r70424. We don't need it by Douglas Gregor · 15 years ago
  72. ee24266 Add PCH version to the -v output by Douglas Gregor · 15 years ago
  73. 214e872 Enable PCH by default by Douglas Gregor · 15 years ago
  74. ab41e63 Add a header containing the Clang version; make the driver use this by Douglas Gregor · 15 years ago
  75. fc68bca Turn PCH off by default, yet again. I'm happier about it this time, though by Douglas Gregor · 15 years ago
  76. f527ce4 Trying turning on PCH by default yet again. We might actually a chance at success now by Douglas Gregor · 15 years ago
  77. e60ee1d Turn off PCH by default, again by Douglas Gregor · 15 years ago
  78. 48cac20 One more crazy try with PCH-by-default by Douglas Gregor · 15 years ago
  79. 79db6a2 Turn of PCH by default. I got the info I was looking for by Douglas Gregor · 15 years ago
  80. cf11b52 Another shot at switching PCH on by default, now that we've cleaned up some bugs and improved performance. Will be reverted after Mr. Speedy gets done with it by Douglas Gregor · 15 years ago
  81. 7b3b24e Revert my PCH change. I'm happy now by Douglas Gregor · 15 years ago
  82. c58fe35 Temporarily try to build with PCH by default. Revert this change once by Douglas Gregor · 15 years ago
  83. 3ca7ee9 Look at the TMP environment variable as well. by Daniel Dunbar · 15 years ago
  84. b03417f Also look at the TEMP environment variable as a place to put temporary files. by Daniel Dunbar · 15 years ago
  85. f60c63a If defined, use TMPDIR environment variable as location for temporary files. by Daniel Dunbar · 15 years ago
  86. df91ef3 Preliminary PCH support in the driver by Douglas Gregor · 15 years ago
  87. fec26bd Driver: Allow using clang as a precompiler, even if it is an unsupported arch. by Daniel Dunbar · 15 years ago
  88. c35d71f Driver: Add --help-hidden by Daniel Dunbar · 15 years ago
  89. a1e2fd9 Driver: CCC_ADD_ARGS could end up using dangling pointers. by Daniel Dunbar · 15 years ago
  90. 1e23f5f Driver: Add 'q' flag for options which shouldn't be reported as unused. by Daniel Dunbar · 15 years ago
  91. e06dc21 Driver: Handle -dumpversion, this is used by some configuration scripts. by Daniel Dunbar · 15 years ago
  92. 4f53b29 Driver: Automatically suppress warnings for duplicate versions of by Daniel Dunbar · 15 years ago
  93. bf4a676 Driver: Add -Qunused-arguments option to suppress driver "unused by Daniel Dunbar · 15 years ago
  94. 6cc73de Wire --version to normal -v version text. by Daniel Dunbar · 15 years ago
  95. 78d8a08 Driver: Allow -ccc-gcc-name to specify the name/path to use when by Daniel Dunbar · 15 years ago
  96. bf54a06 Quick and dirty (!) fix to make sure we use powerpc in triples. - PR3922 by Daniel Dunbar · 15 years ago
  97. 91e28af Driver: Implement basic --help text. by Daniel Dunbar · 15 years ago
  98. 75358d2 Driver: Sketch FreeBSD tool chain. - Patch by Ed Schouten! by Daniel Dunbar · 15 years ago
  99. cd8e4c4 Driver: Support -M and -MM. by Daniel Dunbar · 15 years ago
  100. a2094e7 Driver: Make sure to claim -### before emitting "unused argument" warnings. by Daniel Dunbar · 15 years ago