1. 9e5cc6b Add -fblocks, -stack-protector, and -fobjc-nonfragile-abi defaulting to driver, by Daniel Dunbar · 15 years ago
  2. 77544fd Add driver::types::isObjC predicate. by Daniel Dunbar · 15 years ago
  3. c5a97ec Move -fnext-runtime defaulting to driver (and change clang-cc default to by Daniel Dunbar · 15 years ago
  4. 0be42c4 Move -fms-extensions defaulting to driver, instead of using getDefaultLangOptions. by Daniel Dunbar · 15 years ago
  5. 1f95e65 Move char-is-signed defaulting to driver, instead of using by Daniel Dunbar · 15 years ago
  6. f86fedd Add clang -mcpu=native support, patch by Roman Divacky, varioustweaks by me. by Daniel Dunbar · 15 years ago
  7. 76e80c0 Fix for FreeBSD toolchain in regards to CPP, Credit to Roman Divacky. by Edward O'Callaghan · 15 years ago
  8. a6fda12 Adding -fshort-wchar option. by John Thompson · 15 years ago
  9. 838be48 Move -fcolor-diagnostics logic to driver. by Daniel Dunbar · 15 years ago
  10. 55efe14 Move logic for selection -fmessage-length= to driver. by Daniel Dunbar · 15 years ago
  11. 294691e Fix indentation. by Daniel Dunbar · 15 years ago
  12. 59876c2 Merge constant array and structures. This will create a global variables for arrays and structs that are constant and their initializer is constant. It is on by default but can be disable with the flag -fno-merge-all-constants. by Tanya Lattner · 15 years ago
  13. e6113de Implement support for the -undef command line option, patch by by Chris Lattner · 15 years ago
  14. 4d63f8b Fix -pthread on dragonfly. Patch by Sascha Wildner. by Mike Stump · 15 years ago
  15. dd4fe00 Change the driver to do the Darwin triple mangling itself instead of forwarding by Daniel Dunbar · 15 years ago
  16. ee848a7 Remove some obsolete or unnecessary FIXMEs. by Daniel Dunbar · 15 years ago
  17. 6e8371e PR5328: Allow duplicatic -pedantic (and -pedantic-errors) options. by Daniel Dunbar · 15 years ago
  18. f7fb31f Kill off MakeFormattedString helper function. by Daniel Dunbar · 15 years ago
  19. 607d7f6 Reject -I- in driver instead of clang-cc. by Daniel Dunbar · 15 years ago
  20. 55d3f7a [llvm up] by Douglas Gregor · 15 years ago
  21. e7e1820 Fix for PR4887, Credit to Jonathan Gray. by Edward O'Callaghan · 15 years ago
  22. 8d737cc Rename -nostdclanginc to -nobuiltininc. by Rafael Espindola · 15 years ago
  23. 080fb19 Driver: Fix thinko in logic for finding gcc's tool chain directory. by Daniel Dunbar · 15 years ago
  24. 87f9fd9 Driver: don't produce bogus osx version numbers if no version (aka 0) was specified. by Benjamin Kramer · 15 years ago
  25. 74782b0 Driver: If unable to find the gcc tool chain, try the next OS rev. by Daniel Dunbar · 15 years ago
  26. ff430e6 AuroraUX toolchain should call GNU assembler not the Solaris assembler. by Edward O'Callaghan · 15 years ago
  27. 3cecc19 dynamic linker arg is incorrectly invoking gnu ld arg syntax instead of svr4 ld syntax in AuroraUX toolchain. by Edward O'Callaghan · 15 years ago
  28. 528365d fix -ansi in c++: it means -std=c++98 by Nuno Lopes · 15 years ago
  29. 0ebd932 Driver: Default to using PTH for C++ precompiled header support, PCH for C++ by Daniel Dunbar · 15 years ago
  30. 7adf949 AuroraUX toolchain fixes. by Edward O'Callaghan · 15 years ago
  31. c376910 -funit-at-a-time is the default however some current makefiles pass -fno-unit-at-a-time which is ignored by GCC, we should warn about this not error out. by Edward O'Callaghan · 15 years ago
  32. 5b8cdb5 Allow customization for the version line. by Mike Stump · 15 years ago
  33. 14ea569 Installation of Clang libraries and headers, from Axel Naumann! by Douglas Gregor · 15 years ago
  34. 55bac53 Revert r83443. by Ted Kremenek · 15 years ago
  35. 44da821 Fixup pathnames. by Mike Stump · 15 years ago
  36. 6961fdd Add the -nostdclanginc option to clang (the driver). by Rafael Espindola · 15 years ago
  37. b8d1191 Provide a common set of routines in Version.h that return Subversion by Douglas Gregor · 15 years ago
  38. 85caf03 Set __EXCEPTIONS by checking on darwin's triple. Patch by Rafael Espindola. by Fariborz Jahanian · 15 years ago
  39. f759df0 Move the "needs exception support" logic to clang. This also fixes by Rafael Espindola · 15 years ago
  40. a92ba27 Fix truck sized thinko where Darwin/ARM toolchain didn't look for programs in by Daniel Dunbar · 15 years ago
  41. b8bb3e7 Turn on 'RegionStore' as the default store manager both for 'clang --analyze' and 'scan-build'. Leave 'BasicStore' as the default store manager in 'clang-cc'. While there are still known warts with RegionStore, it's ready to be tested by general users. by Ted Kremenek · 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. 1d4612b Split Darwin toolchain into Clang and GCC Darwin toolchains with a common base. by Daniel Dunbar · 15 years ago
  44. 6cd4154 Lift AddLinkRuntimeLibArgs into Darwin tool chain. by Daniel Dunbar · 15 years ago
  45. 608d04c Move isMacosxVersionLT helpers to Darwin tool chain. by Daniel Dunbar · 15 years ago
  46. 48d5aae Lift getMacosxVersionMin out into Darwin ToolChain. by Daniel Dunbar · 15 years ago
  47. 6b200b2 Lift AddLinkerSearchPaths() into Darwin tool chain. by Daniel Dunbar · 15 years ago
  48. ae54af2 Rename a variable to match its semantics. by Daniel Dunbar · 15 years ago
  49. 20f0eac Driver: Change -O to mean -O2, -O1 is meaningless. by Daniel Dunbar · 15 years ago
  50. 634b245 Improve driver error message when only running the preprocessor and an input is by Daniel Dunbar · 15 years ago
  51. e3b8d07 We don't need a -compile-ast clang-cc action, we can just use -S. by Daniel Dunbar · 15 years ago
  52. 6bea73b Incremental improvement to logic determining whether we emit unwind tables or by Daniel Dunbar · 15 years ago
  53. 2030d8f Support -mabi= for clang/ARM. by Daniel Dunbar · 15 years ago
  54. f4aa4f61 Swizzle the target triple based on -mthumb, and update clang-cc to recognize by Daniel Dunbar · 15 years ago
  55. cbd1933 Initial handling of -m{soft-float,hard-float,float-abi=} for ARM. by Daniel Dunbar · 15 years ago
  56. e6ad3f9 Move X86 handling of -m[no-]soft-float and -m[no-]red-zone into AddX86TargetArgs. by Daniel Dunbar · 15 years ago
  57. 1d65e4b Change getLLVMArchNameForARM to just get the suffix. by Daniel Dunbar · 15 years ago
  58. 728a512 Add code to mangle the triple for LLVM on ARM. by Daniel Dunbar · 15 years ago
  59. f84a4a4 Don't pass -fno-builtin-str{cat,cpy} to clang-cc, I forget we don't support that yet. PR4941. by Daniel Dunbar · 15 years ago
  60. b163ef7 ARM: Pass -mcpu to clang-cc based on -march= and -mcpu=. by Daniel Dunbar · 15 years ago
  61. 2ba9157 Implement Darwin/ARM behavior for defaulting to -fno-builtin-str{cat,cpy}. by Daniel Dunbar · 15 years ago
  62. e2fd664 Add a check that -static is not used with -dynamic or -mdynamic-no-pic. by Daniel Dunbar · 15 years ago
  63. 88a3d6c Factor out CheckPreprocessing options to share between Clang/CC1 tools. by Daniel Dunbar · 15 years ago
  64. 84ec96c Improve Darwin argument translation to match what the driver driver does. by Daniel Dunbar · 15 years ago
  65. 6acda16 Move Clang X86 cpu/feature argument translation into AddX86TargetArgs. by Daniel Dunbar · 15 years ago
  66. 5ed34f4 Change Get{File,Program}Path to return an std::string (instead of a sys::Path). by Daniel Dunbar · 15 years ago
  67. 8813764 Remove gratuitous use of c_str(). by Daniel Dunbar · 15 years ago
  68. 302e2ea Use Twine concatenation instead of llvm::format. by Daniel Dunbar · 15 years ago
  69. 5b750fe Simplify. by Daniel Dunbar · 15 years ago
  70. 16484af StringRefize ArgList construction of ArgStrings. by Daniel Dunbar · 15 years ago
  71. cc6f803 Use AddDarwinArch for passing arch name to assembler. by Daniel Dunbar · 15 years ago
  72. fbefe6b Add DarwinTool base class for all Darwin tools, and move AddDarwin[Sub]Arch there. by Daniel Dunbar · 15 years ago
  73. 0dcb9a3 Push bound architecture name into TranslateArgs. by Daniel Dunbar · 15 years ago
  74. 4954018 Push bound architecture name into Compilation::getArgsForToolChain. by Daniel Dunbar · 15 years ago
  75. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  76. 7ef7f13 Change Darwin toolchain lookup to use llvm::Triple. - -2+1 FIXMEs. by Daniel Dunbar · 15 years ago
  77. 36df290 Validate arguments to -arch. by Daniel Dunbar · 15 years ago
  78. d7502d0 Rename HostInfo::getToolChain to HostInfo::CreateToolChain, and don't recreate by Daniel Dunbar · 15 years ago
  79. fe8aa47 Delete trailing whitespace. by Daniel Dunbar · 15 years ago
  80. 3f30ddf Simplify. by Daniel Dunbar · 15 years ago
  81. a6046be Fix ShouldUseClangCompiler to use llvm::Triple. by Daniel Dunbar · 15 years ago
  82. a823183 Tweak & reflow comments, and delete trailing whitespace. by Daniel Dunbar · 15 years ago
  83. e0be8b1 Remove FIXMEs for pedantically-gcc-bug-compatible behavior. by Daniel Dunbar · 15 years ago
  84. ae33f8f Merge libgcc spec changes for darwin::Link::ConstructJob. by Daniel Dunbar · 15 years ago
  85. d82f8fa Tweak darwin::Link::AddLinkArgs. by Daniel Dunbar · 15 years ago
  86. 78dbd58 Implement darwin::Link::AddDarwinArch for ARM. by Daniel Dunbar · 15 years ago
  87. 30392de Darwin: Pass -iphoneos-version-min to ld when building for ARM. by Daniel Dunbar · 15 years ago
  88. da64141 Add -ccc-install-dir option for faking installation path. by Daniel Dunbar · 15 years ago
  89. f395528 Rename Darwin_X86 toolchain to just Darwin, this can support all platforms. by Daniel Dunbar · 15 years ago
  90. 8f28962 Remove unused argument. by Daniel Dunbar · 15 years ago
  91. 5345c39 Add basic support for -pthread. by Daniel Dunbar · 15 years ago
  92. 4f711c4 Update. by Mike Stump · 15 years ago
  93. 5915fbf Add driver support for -emit-ast and AST compilation steps. by Daniel Dunbar · 15 years ago
  94. 8a5a9aa Updated GNU runtime non-fragile ABI. by David Chisnall · 15 years ago
  95. 0e2679d PR4766: Don't pass -static to 'as' on x86_64 on Darwin. by Daniel Dunbar · 15 years ago
  96. b1e5e66 Remove arch normalization from Driver, this should be unnecessary now that by Daniel Dunbar · 15 years ago
  97. d57a7ef API changes to match llvm ToT. by Chris Lattner · 15 years ago
  98. 8bde505 Reenable clang using clang-cc for C++ and all archs by default. by Daniel Dunbar · 15 years ago
  99. 4a12408 Temporarily switch clang back to not using clang-cc by default for C++, and only by Daniel Dunbar · 15 years ago
  100. 7ebe971 Don't install Clang libraries. by Douglas Gregor · 15 years ago