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