1. fcec10b Driver/IA: Accept and ignore -force_cpusubtype_ALL, as in 'clang -c by Daniel Dunbar · 14 years ago
  2. 270073c Driver/Darwin: Forward -ObjC when linking, which may be needed when using static by Daniel Dunbar · 14 years ago
  3. 06205ca Driver: Error on -fno-for-scope, which we have no intention of supporting. by Daniel Dunbar · 14 years ago
  4. 63d907b Revert r116605, a lot more were committed by mistake. by Argyrios Kyrtzidis · 14 years ago
  5. 721f38c Add '-include-pch' option to the driver, so it can get passed to the cc1 driver. by Argyrios Kyrtzidis · 14 years ago
  6. 4d5625e Wire up the -fstrict-aliasing and -fno-strict-aliasing options by Dan Gohman · 14 years ago
  7. 362ed70 Driver/Darwin: Remove a useless warning about missing runtime libraries. These by Daniel Dunbar · 14 years ago
  8. d3ab63e Eliminate -fdiagnostics-binary and all of the infrastructure for by Douglas Gregor · 14 years ago
  9. 9d520c5 Declare argv parameters as const char* const* instead of to char** to clarify that they are not modified, and to allow for string literals as arguments. by Axel Naumann · 14 years ago
  10. 24da18f lib/Driver/Driver.cpp: Use the driver g++-4 for Cygwin-1.5. by NAKAMURA Takumi · 14 years ago
  11. cd7a30b lib/Driver/Tools.cpp: Disable cxa_atexit by default also on Cygwin. by NAKAMURA Takumi · 14 years ago
  12. 9a2b9d7 Implement -fshort-enums (rdar://8490496). by Argyrios Kyrtzidis · 14 years ago
  13. 4a1cdb5 Teach the driver to pass -fexceptions in Objective-C inputs on ARM. by John McCall · 14 years ago
  14. c69e1cf Introduce -flimit-debug-info. by Devang Patel · 14 years ago
  15. 990142a Driver: Ignore the found PCH file if its '-include' is not the first one. by Argyrios Kyrtzidis · 14 years ago
  16. 48f9994 Driver/Linux: Translate rewritten lib options back to standard -l form when by Daniel Dunbar · 14 years ago
  17. e94db47 Driver: Add -fallow-unsupported which disables some of the eager error'ing we do by Daniel Dunbar · 14 years ago
  18. bfd2124 Revert r114712 due to failure on darwin buildbot. by Nick Lewycky · 14 years ago
  19. 280ec9d Make -M/-MM behave like in gcc; use -MF first then -o else use stdout. by Nick Lewycky · 14 years ago
  20. e3365aa Fix header comment so we don't break emacs. by Nick Lewycky · 14 years ago
  21. f765d76 If -fcolor-diagnostics is explicitly passed to the driver respect that even if the driver is of the opinion that by Argyrios Kyrtzidis · 14 years ago
  22. 885b1db Driver/Darwin: Add a runtime library just for ___eprintf -- when targeting i386 by Daniel Dunbar · 14 years ago
  23. dea6313 Driver/Objective-C: Retool Objective-C ABI flags to be more usable, and actually by Daniel Dunbar · 14 years ago
  24. 7433fed Driver: implement driver automagic support for -lcc_kext by Shantonu Sen · 14 years ago
  25. 7f18e67 Add a -ftrapv-handler= option which allows a handler to invoke instead of simply aborting when a signed operation overflows. This mirrors the (GCC-incompatible) behaviour from clang 1.0 and 1.1 when -ftrapv was specified, but allows the handler to be defined for each compilation unit. by David Chisnall · 14 years ago
  26. 0e50ee4 Driver/DarwinClang: Add GCC libexec paths so we can find the cc1 binaries if we by Daniel Dunbar · 14 years ago
  27. a9b02c0 Reapply "Driver/Darwin: Time for another spin at switching to the DarwinClang", by Daniel Dunbar · 14 years ago
  28. b6bc587 Revert "Driver/Darwin: Time for another spin at switching to the DarwinClang by Daniel Dunbar · 14 years ago
  29. d829950 Driver: Support -dumpmachine. by Daniel Dunbar · 14 years ago
  30. 7a16997 Driver/Darwin: Time for another spin at switching to the DarwinClang toolchain. by Daniel Dunbar · 14 years ago
  31. 132e35d Driver: Fix spelling of AddCXXStdlibLibArgs, which I copy-n-pasto'd. by Daniel Dunbar · 14 years ago
  32. efe91ea Driver/DarwinClang: The new toolchain definition is going to drop the -L inside by Daniel Dunbar · 14 years ago
  33. e5a37f4 Driver: Add magic handling for "reserved library names", starting with by Daniel Dunbar · 14 years ago
  34. 2008fee Driver: Factor out AddLinkerInputs() function. by Daniel Dunbar · 14 years ago
  35. b993f5d Driver: Add a toolchain hook for whether the system has native LLVM support. by Daniel Dunbar · 14 years ago
  36. 5f81d8a Make the new -fobjc-nonfragile-abi2 the default by Fariborz Jahanian · 14 years ago
  37. 3f16c95 Driver: Add a -stdlib= argument which can be used to select the C++ standard by Daniel Dunbar · 14 years ago
  38. 641b98b Driver: Factor out some code for handling the C++ standard library. by Daniel Dunbar · 14 years ago
  39. 1a2cd4f Simplify. by Daniel Dunbar · 14 years ago
  40. 560a921 Revert "CMake: Update to use standard CMake dependency tracking facilities instead" by Michael J. Spencer · 14 years ago
  41. d0a57d5 Disable cxa_atexit by default on MingW. Patch by Dimitry Andric! by Anton Korobeynikov · 14 years ago
  42. 5a7f349 CMake: Update to use standard CMake dependency tracking facilities instead by Michael J. Spencer · 14 years ago
  43. 748de8e Driver/Darwin: Make the compilation object available in AddLinkArgs. by Daniel Dunbar · 14 years ago
  44. fee1add Driver: Mark function as nounwind when -mkernel or -fapple-kext is present. by Daniel Dunbar · 14 years ago
  45. ec9bf47 Clean up CMake dependencies by Douglas Gregor · 14 years ago
  46. 9ced704 Driver/Darwin: Catch another case where ld ends up using ld_classic. by Daniel Dunbar · 14 years ago
  47. bcf1da8 Driver/Darwin: Don't pass -demangle to the linker when we know it is going to by Daniel Dunbar · 14 years ago
  48. 79e9e9d Make "-ccc-cxx" option work on Linux. Patch by nobled. by Rafael Espindola · 14 years ago
  49. 34916db Add missing #include by Douglas Gregor · 14 years ago
  50. 3f2cc6f fix a hard coded version number, PR8031. Patch by 'nobled'. by Chris Lattner · 14 years ago
  51. 400b607 Add support for Borland extensions via option -fborland-extensions by Dawn Perchik · 14 years ago
  52. d0b4e7c Reverting rev 112791 - apparently -fborland-extensions is on all the time?! by Dawn Perchik · 14 years ago
  53. 621a2f3 Add support for Borland extensions via option -fborland-extensions by Dawn Perchik · 14 years ago
  54. 2dc70ad Driver/Darwin: Switch back to old toolchain, looks like new one isn't quite by Daniel Dunbar · 14 years ago
  55. 5edbd23 Driver: Fix thinko where I switched to always using the old toolchain, instead by Daniel Dunbar · 14 years ago
  56. 3a0e392 Driver/Darwin: Pass the right arch specific dir for ARM, when linking. by Daniel Dunbar · 14 years ago
  57. f7c16d9 Frontend: Add basic -H support. by Daniel Dunbar · 14 years ago
  58. ca0e054 Driver/Clang: Forward -Wa, and -Xassembler to clang -cc1 when using the by Daniel Dunbar · 14 years ago
  59. 00577ad Driver: Move Clang "triple" computation routines to method on the by Daniel Dunbar · 14 years ago
  60. 673745f Driver/Darwin: Switch to using simplified tool chain by default -- what better by Daniel Dunbar · 14 years ago
  61. eab3bc4 Driver/Darwin: When using the simplified Clang toolchain, make sure to also pass by Daniel Dunbar · 14 years ago
  62. c4ab349 Driver: Update -ccc-install-dir to also set the installed dir. Totally by Daniel Dunbar · 14 years ago
  63. e97673f Add two new enumerations to the unsupported list for Windows so that all cases by Chandler Carruth · 14 years ago
  64. ff58e36 Visual Studio tools used on win32 hosts when targeting win32. by Michael J. Spencer · 14 years ago
  65. 4786c15 Add machine-parseable Fix-It output as part of diagnostics, under the by Douglas Gregor · 14 years ago
  66. c326b64 Driver: Claim the -mlinker-version synthesized argument, it shouldn't be by Daniel Dunbar · 14 years ago
  67. c736377 Pass some things to the linker that gcc passes. -r is the only one of these that I'm sure about, but the others seem to be listed on FreeBSD by gcc -dumpspecs, so I hope they're right. Apparently -r is also not passed on GNU/Linux (and should be), but I can't see where the toolchain definition for this platform live. by David Chisnall · 14 years ago
  68. caeed1d Driver/OptParser: Add a NoForward flag to prevent forwarding certain options to by Daniel Dunbar · 14 years ago
  69. a77a723 Driver: Use the compile time linker version as the default for -mlinker-version, by Daniel Dunbar · 14 years ago
  70. e5c3537 Switch on PCH for C++. C++ fans all over the world rejoice. by Argyrios Kyrtzidis · 14 years ago
  71. b18dc5b Driver/Darwin: Pass -demangle when linking, if the linker supports it. by Daniel Dunbar · 14 years ago
  72. c176bc6 Driver: Add -mlinker-version=, which forwards to -target-linker-version. by Daniel Dunbar · 14 years ago
  73. 79a79f5 Turn on idempotent operations checker when using --analyze. by Ted Kremenek · 14 years ago
  74. 9d5600a Driver/FreeBSD: Infer the right arch name in the presence of -m32,-m64, for the by Daniel Dunbar · 14 years ago
  75. ba30bbe Run the assembler instead of gcc on Linux. by Rafael Espindola · 14 years ago
  76. f84d409 Make -funroll-loops turn on loop unrolling in the optimizer instead by Eric Christopher · 14 years ago
  77. 2dffe2d Driver: Don't forward any -g options to GCC, when using it to drive the by Daniel Dunbar · 14 years ago
  78. 25b58eb Driver/Darwin: Change where Darwin computes the host version, to normalize tool by Daniel Dunbar · 14 years ago
  79. 6699877 Driver: Have -ccc-host-triple simply override the default in the driver, for by Daniel Dunbar · 14 years ago
  80. c2bda62 Driver/Darwin: Inline some constants. by Daniel Dunbar · 14 years ago
  81. 214afe9 Driver/FreeBSD: Change how FreeBSD derives the Lib32 variable, to normalize tool by Daniel Dunbar · 14 years ago
  82. 4180011 Driver: Move HostInfo::lookupTypeForExtension to ToolChain::LookupTypeForExtension. by Daniel Dunbar · 14 years ago
  83. 74edcea Driver: Give Build{Universal,}Actions access to the default host tool chain. I by Daniel Dunbar · 14 years ago
  84. 2fe238e Driver: Add Compilation::addCommand and switch tools to using it, now that we by Daniel Dunbar · 14 years ago
  85. d0b77e1 Driver: Eliminate PipedJob, which is now unused. by Daniel Dunbar · 14 years ago
  86. 7c1e465 Driver: Eliminate special InputInfo kind for pipes, it is now unused. by Daniel Dunbar · 14 years ago
  87. 8c631e3 Driver: Eliminate now unnecessary tool hooks for whether they accept piped input/output. by Daniel Dunbar · 14 years ago
  88. 9b18cca Driver: Simplify. by Daniel Dunbar · 14 years ago
  89. e434125 Driver: Eliminate now unused argument. by Daniel Dunbar · 14 years ago
  90. defcda7 Driver: Simplify logic for sending 'clang -E t.c' output to stdout. by Daniel Dunbar · 14 years ago
  91. 58e12fd Driver: Never try to use piped inputs. by Daniel Dunbar · 14 years ago
  92. c19a12d Driver: Start ripping out support for -pipe, which is worthless and complicates by Daniel Dunbar · 14 years ago
  93. 95c0457 Driver/OpenBSD: Update toolchain for compiler changes / C++; patch by Jonathan by Daniel Dunbar · 14 years ago
  94. edf29b0 Driver: Keep track of a separate "install dir", which is the path where clang by Daniel Dunbar · 14 years ago
  95. f5438e3 Driver/Darwin: Set -force_cpusubtype_ALL only by default on x86. by Daniel Dunbar · 14 years ago
  96. ef44a5d Driver/Darwin: Always allow blocks on Darwin, so that users can conditionally by Daniel Dunbar · 14 years ago
  97. 405861d Add -lstdc++ to DragonFly tools. Patch by Sascha Wildner. by Rafael Espindola · 14 years ago
  98. 5314e44 Driver: Make -fnext-runtime the default when rewriting Objective-C. by Daniel Dunbar · 14 years ago
  99. 60baf0f Driver/Darwin: Add deployment target after doing argument translation, so that by Daniel Dunbar · 14 years ago
  100. c0e665e Driver: Factor out Darwin::AddDeploymentTarget. by Daniel Dunbar · 14 years ago