1. d7b88c2 Driver: Fix a number of option definition mismatches (flags instead of by Daniel Dunbar · 16 years ago
  2. 70c8db1 Driver: Print the correct target when printing the version. by Daniel Dunbar · 16 years ago
  3. d73fe9b Driver: Move GetReleaseVersion to static Driver::GetReleaseVersion method. by Daniel Dunbar · 16 years ago
  4. 524b9fb Driver: Add ArgList::AddAllArgsTranslated; for forwarding options to by Daniel Dunbar · 16 years ago
  5. 92b3699 hopefully fix VC++ build error. by Chris Lattner · 16 years ago
  6. ec069ed Driver: Implement Darwin_X86 tool chain level argument translation. by Daniel Dunbar · 16 years ago
  7. 4e7e9cf Driver: Handle -Xarch_, including warning for nasty -Xarch_ use cases by Daniel Dunbar · 16 years ago
  8. f6dd66b Driver: Replace Option::ForwardToGCC by Option::DriverOption (which by Daniel Dunbar · 16 years ago
  9. ea728ac Driver: Fix typo in JoinedAndSeparateArg::render. by Daniel Dunbar · 16 years ago
  10. f3cad36 Driver: Prep for tool chain specific argument translation. by Daniel Dunbar · 16 years ago
  11. cf51ece gcc 4.3 finds my use of ^ suspicious. by Daniel Dunbar · 16 years ago
  12. 9b646da Turn on -analyzer-eagerly-assume by default when using 'clang-cc' to perform by Ted Kremenek · 16 years ago
  13. 337a627 Driver: Handle -flto, -O4, and tweak -emit-llvm to match llvm-gcc. by Daniel Dunbar · 16 years ago
  14. 6256d36 Driver: Warn when 'clang' is used to compile a source file we could by Daniel Dunbar · 16 years ago
  15. 0f99d2e Driver: Change default use of "clang" compiler. by Daniel Dunbar · 16 years ago
  16. af80e1f Move ToolChain::ShouldUseClangCompiler to by Daniel Dunbar · 16 years ago
  17. b3fd500 Driver: Translate -fverbose-asm for LLVM backend. by Daniel Dunbar · 16 years ago
  18. a43a21e Really fix cmake style builds. by Mike Stump · 16 years ago
  19. 9e3a224 Driver: Result files shouldn't be removed on failure when -save-temps by Daniel Dunbar · 16 years ago
  20. fe2e04a Driver: ArgList::getLastArg was in fact returning the first matching arg. by Daniel Dunbar · 16 years ago
  21. 546654a Driver: Forward -MMD (not -MM) to clang-cc; this got lost in by Daniel Dunbar · 16 years ago
  22. 82fa7c5 Install clang-cc to libexec/clang-cc (instead of bin/clang-cc). by Daniel Dunbar · 16 years ago
  23. d7d5f02 Rename clang to clang-cc. by Daniel Dunbar · 16 years ago
  24. a428df8 Driver: lipo wasn't being called correctly (translation failure from by Daniel Dunbar · 16 years ago
  25. 7547f74 Driver: Make argument parsing fast. by Daniel Dunbar · 16 years ago
  26. 8a7e66d Driver: Fix off by one in computation of first searchable option. by Daniel Dunbar · 16 years ago
  27. a880db0 Driver: Add two special groups of "whitelisted" options which we know by Daniel Dunbar · 16 years ago
  28. b355692 Driver: Check that options are ordered properly (outside of by Daniel Dunbar · 16 years ago
  29. c50b00d Driver: Setup file and program search paths in tool chains. by Daniel Dunbar · 16 years ago
  30. 3fe51c4 Driver: Drop code for checking bounds in SeparateArg::render, this by Daniel Dunbar · 16 years ago
  31. b0c4df5 Driver: Implement 'missing argument' error. by Daniel Dunbar · 16 years ago
  32. 378fd73 fix PR3859: crash with 'cc -V' by Nuno Lopes · 16 years ago
  33. af96def Driver: Give Compilation::Execute total control over the Driver result by Daniel Dunbar · 16 years ago
  34. e33bea4 ccc/Driver: .s defaults to 'assembler-with-cpp' on Darwin. by Daniel Dunbar · 16 years ago
  35. 049853d Driver: Switch to using -include-pth. by Daniel Dunbar · 16 years ago
  36. fc6a899 Driver: Parse Darwin version out of target triple. by Daniel Dunbar · 16 years ago
  37. 8cac5f7 Driver: Add and use darwin::Assemble tool. by Daniel Dunbar · 16 years ago
  38. ee51031 Driver: Add two option overload for AddAllArgValues. by Daniel Dunbar · 16 years ago
  39. 38dd3d5 Driver: Add Arg::getAsString and use when dumping arguments to by Daniel Dunbar · 16 years ago
  40. 71061bf strictly evaluate SVN_REVISION so that svnversion is run once instead of 4 times. by Chris Lattner · 16 years ago
  41. ca3459e Driver: Implement -print-search-dirs. by Daniel Dunbar · 16 years ago
  42. 8eddb3f Driver: Sketch Darwin tool chains. by Daniel Dunbar · 16 years ago
  43. ff7488d Driver: Add darwin::Lipo tool. by Daniel Dunbar · 16 years ago
  44. 3917608 Driver: Move tool chain implementations into ToolChains.cpp. by Daniel Dunbar · 16 years ago
  45. b7b61b2 Driver: Temporary hack to allow -ccc-print-bindings to work (for by Daniel Dunbar · 16 years ago
  46. 55b3b5f Driver/clang: -mattr strings were not comma separated. by Daniel Dunbar · 16 years ago
  47. 56b10ab Driver: Compilation::Execute wasn't returning result code correctly. by Daniel Dunbar · 16 years ago
  48. ceafbc8 Driver: Executing piped jobs with a single command is easy. by Daniel Dunbar · 16 years ago
  49. 05494a7 Driver: Claim unused input arguments when emitting "input file unused" by Daniel Dunbar · 16 years ago
  50. 7587719 Driver: Claim -arch options when pipelining, and claim arguments that by Daniel Dunbar · 16 years ago
  51. 115a792 Driver: Handle "linker input" arguments. by Daniel Dunbar · 16 years ago
  52. 42f7fc2 Driver: Add Arg::renderAsInput; this is a messy area and something I by Daniel Dunbar · 16 years ago
  53. 5697aa0 Driver: Fix bug in translating -O to clang, add clang-translation test case. by Daniel Dunbar · 16 years ago
  54. ecc6362 Driver: Resolve program path for "cp" (used as part of transparent gcc by Daniel Dunbar · 16 years ago
  55. 60ccc76 Driver: Forcibly disable pipe support until we can execute them, the by Daniel Dunbar · 16 years ago
  56. 84603bc Driver: Delete the temporary files llvm::sys::Path::makeUnique by Daniel Dunbar · 16 years ago
  57. c8ea24e Make -j8 safe. by Mike Stump · 16 years ago
  58. 49b98e7 Driver: Execute jobs; no pipe support yet. by Daniel Dunbar · 16 years ago
  59. e530ad4 Driver: Cleanup temporary/result files. by Daniel Dunbar · 16 years ago
  60. 632f50e Driver: Lookup program names using llvm::sys::Program::FindProgramByName by Daniel Dunbar · 16 years ago
  61. d227fe7 The eventual name of this will be clang, might as well start now. by Mike Stump · 16 years ago
  62. 0edefeb Driver: Support ToolChain specific path lists to search for files and programs. by Daniel Dunbar · 16 years ago
  63. 8f12e27 Move generated file to ObjDir. by Mike Stump · 16 years ago
  64. 214399e Driver: Construct temporary file names. by Daniel Dunbar · 16 years ago
  65. 8944c38 Add revision information. by Mike Stump · 16 years ago
  66. af2e4ba Driver: Don't warn about unused arguments if there are Driver errors by Daniel Dunbar · 16 years ago
  67. e70295b Fix URL trimming for version information. by Mike Stump · 16 years ago
  68. 5d023c3 Improve version number. by Mike Stump · 16 years ago
  69. 1d46033 Driver: Port Clang argument translation. by Daniel Dunbar · 16 years ago
  70. 56c5594 Driver: Bug fix, derived .gch names sometimes started with "/". by Daniel Dunbar · 16 years ago
  71. 18a7f33 Driver: Add argument translation utilities to ArgList. by Daniel Dunbar · 16 years ago
  72. b488c1d Driver: Lift out common GCC tool and implement generic GCC tool by Daniel Dunbar · 16 years ago
  73. d09986a Driver: Add assert and FIXME; arguments which act as linker inputs by Daniel Dunbar · 16 years ago
  74. 21fd6ac Driver: Provide Arg::render implementations. by Daniel Dunbar · 16 years ago
  75. 6d954d7 Driver: Add "d" flag to Options.def for options which are completely by Daniel Dunbar · 16 years ago
  76. 871adcf Driver: ConstructJob also needs to know the destination (where to put by Daniel Dunbar · 16 years ago
  77. aa469f6 Driver: Print version on stderr to match [gc]cc. by Daniel Dunbar · 16 years ago
  78. 24b5560 Driver: Implement -### (hard to tell, since we don't actually by Daniel Dunbar · 16 years ago
  79. 5ab483b Driver: Claim inputs when we bind the InputAction. by Daniel Dunbar · 16 years ago
  80. d57ac59 Driver: Rename Command::Argv to Command::Arguments to make it clearer by Daniel Dunbar · 16 years ago
  81. 028801c Driver: Don't claim inputs when pipelining, a tool should eventually by Daniel Dunbar · 16 years ago
  82. 62cf601 Driver: Add a dash of const. by Daniel Dunbar · 16 years ago
  83. 47ac7d2 Driver: Stub out Tool::ConstructJob. by Daniel Dunbar · 16 years ago
  84. aa3e0d2 Driver: Fix Compilation::getArgsForToolChain, local variable was by Daniel Dunbar · 16 years ago
  85. c811b6c Driver: Add two normalizations for powerpc. - PR3830 by Daniel Dunbar · 16 years ago
  86. 10ffa9a Driver: Ditch Driver::DefaultToolChain, this can vary between compilations. by Daniel Dunbar · 16 years ago
  87. e29cd6f Driver: I was too hasty in free'ing Actions, we sometimes share by Daniel Dunbar · 16 years ago
  88. 6d91b04 Driver: Initialize Arg::Claimed by Daniel Dunbar · 16 years ago
  89. 2154923 Driver: Move actions into Compilation, and construct the compilation earlier. by Daniel Dunbar · 16 years ago
  90. 5796bf4 Driver: Add test for binding of precompile; exposed bug due to my by Daniel Dunbar · 16 years ago
  91. ec29d36 Driver: Implement JoinedAndSeparateArg::getValue and add parsing test case. by Daniel Dunbar · 16 years ago
  92. b25c7c1 Driver: UnknownHostInfo was always returning 0. by Daniel Dunbar · 16 years ago
  93. 8f25c79 Driver: Use PrettyStackTrace. by Daniel Dunbar · 16 years ago
  94. 7e4534d Driver: Release Host, ToolChain, and Tool implementations. by Daniel Dunbar · 16 years ago
  95. d46f0ac Driver: Add test case for -ccc-clang-archs (which, it turns out, was inverted). by Daniel Dunbar · 16 years ago
  96. 5c3c1d7 Driver: Add -ccc-print-bindings option (for testing); the Python by Daniel Dunbar · 16 years ago
  97. 31b1e54 Driver: Add name to Tool (for testing/debugging) and move GCC_* tools by Daniel Dunbar · 16 years ago
  98. aae82f1 GCC 4.0 isn't happy with VISIBILITY_HIDDEN on a namespace. by Chris Lattner · 16 years ago
  99. 985b825 Driver: GCC 4.0 isn't happy with VISIBILITY_HIDDEN on a namespace. by Daniel Dunbar · 16 years ago
  100. 9c073ff Driver: Stub out generic GCC tool selection (missed a file) by Daniel Dunbar · 16 years ago