Age | Commit message (Expand) | Author |
2010-04-06 | Driver: Add a Tool::hasGoodDiagnostics hook, and use it to simplify logic for | Daniel Dunbar |
2010-04-01 | Driver: Add support for a CLANGXX_IS_PRODUCTION build variable, which enable | Daniel Dunbar |
2010-03-22 | Add very limited support for GCC's '-B' flag. This allows us to support unusual | Chandler Carruth |
2010-03-20 | Driver: Support CC_PRINT_OPTIONS, used for logging the compile commands (in -... | Daniel Dunbar |
2010-03-11 | Driver: Free Action objects. | Daniel Dunbar |
2010-03-04 | add TCE target support, patch by Pekka J! | Chris Lattner |
2010-02-25 | Driver: Allow driver title (for --help) to be overridden by clients. | Daniel Dunbar |
2010-02-17 | PR5803: clang++: Treat untyped 'C' inputs as C++. | Daniel Dunbar |
2010-02-11 | Driver: Add -rewrite-objc, which is an interface to clang -cc1 -rewrite-objc. | Daniel Dunbar |
2010-02-11 | Driver: Fix infinite loop and wrong message on invalid -ccc-clang-arch argument. | Daniel Dunbar |
2010-02-03 | Driver: Add -[no-]integrated-as for clang. | Daniel Dunbar |
2010-01-25 | ASTUnit: Don't check that input files exist when parsing ASTs from the command | Daniel Dunbar |
2010-01-23 | Rename getClangFullVendorVersion() to getClangFullVersion(). | Ted Kremenek |
2010-01-22 | Move version string generation (e.g., "clang 1.1 ...") to libBasic/Version.cp... | Ted Kremenek |
2010-01-22 | (1) Rename getClangSubversionRevision() to getClangRevision(), and | Ted Kremenek |
2010-01-22 | Rename getClangSubversionPath() -> getClangRepositoryPath() and have it retur... | Ted Kremenek |
2010-01-20 | Driver: Lift clang resource directory computation to the Driver object. | Daniel Dunbar |
2010-01-19 | Fix possible memory leak by using an OwningPtr. | Ted Kremenek |
2009-12-25 | Remove some dead variables clang-analyzer found. | Benjamin Kramer |
2009-12-23 | Driver: Fix '... -O4 -O0 ...', which was generating bitcode. | Daniel Dunbar |
2009-12-22 | Driver: When linking, don't warn about unused arguments which are obviously only | Daniel Dunbar |
2009-12-08 | Remove several .c_str() to be forward-compatible with StringRef. | Jeffrey Yasskin |
2009-12-07 | Shorten the help test for -no-canonical-prefixes, put it behind HelpHidden and | Rafael Espindola |
2009-12-05 | Unbreak -ccc-cxx and -ccc-clang-cxx defaulting. | Daniel Dunbar |
2009-12-04 | Driver: Switch -ccc-* options to using the standard options functionality. | Daniel Dunbar |
2009-12-03 | Add OptTable::PrintHelp. | Daniel Dunbar |
2009-11-25 | What the FIXMEs want, the FIXMEs shall have. | Daniel Dunbar |
2009-11-19 | Factor out OptTable::ParseArgs, for parsing an entire argument vector. | Daniel Dunbar |
2009-11-19 | Driver: ArgList doesn't depend on Options.h anymore. | Daniel Dunbar |
2009-11-19 | Driver: Switch to using explicit {getLast,has}ArgNoClaim functions instead of... | Daniel Dunbar |
2009-11-19 | Use Option::matches instead of direct ID comparison. | Daniel Dunbar |
2009-11-19 | Driver: Split OptTable out into OptTable.{h,cpp} | Daniel Dunbar |
2009-11-18 | Driver: Rework OptTable to have no dependency on the options it manages. | Daniel Dunbar |
2009-10-09 | Allow customization for the version line. | Mike Stump |
2009-10-05 | Provide a common set of routines in Version.h that return Subversion | Douglas Gregor |
2009-09-22 | Push "clang-is-production" logic up to tools/driver, and make it hittable by | Daniel Dunbar |
2009-09-17 | Improve driver error message when only running the preprocessor and an input is | Daniel Dunbar |
2009-09-09 | Change Get{File,Program}Path to return an std::string (instead of a sys::Path). | Daniel Dunbar |
2009-09-09 | Push bound architecture name into Compilation::getArgsForToolChain. | Daniel Dunbar |
2009-09-09 | Remove tabs, and whitespace cleanups. | Mike Stump |
2009-09-08 | Validate arguments to -arch. | Daniel Dunbar |
2009-09-08 | Rename HostInfo::getToolChain to HostInfo::CreateToolChain, and don't recreate | Daniel Dunbar |
2009-09-08 | Simplify. | Daniel Dunbar |
2009-09-08 | Fix ShouldUseClangCompiler to use llvm::Triple. | Daniel Dunbar |
2009-09-08 | Tweak & reflow comments, and delete trailing whitespace. | Daniel Dunbar |
2009-09-04 | Add -ccc-install-dir option for faking installation path. | Daniel Dunbar |
2009-09-03 | Update. | Mike Stump |
2009-09-01 | Add driver support for -emit-ast and AST compilation steps. | Daniel Dunbar |
2009-08-24 | Remove arch normalization from Driver, this should be unnecessary now that | Daniel Dunbar |
2009-08-23 | API changes to match llvm ToT. | Chris Lattner |