| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix 80-column violation. | Chad Rosier | 2012-01-14 | 1 | -1/+2 |
| * | Revert r148138; it's causing test failures. | Eli Friedman | 2012-01-13 | 1 | -1/+1 |
| * | rename -ccc-host-triple into -target | Sebastian Pop | 2012-01-13 | 1 | -1/+1 |
| * | rename DefaultHostTriple into DefaultTargetTriple | Sebastian Pop | 2012-01-13 | 1 | -5/+5 |
| * | [Win32] Catch exceptions (eg. segfault) on waiting for invoked clang from the... | NAKAMURA Takumi | 2011-11-29 | 1 | -1/+7 |
| * | Teach the driver about failure result files, which are compilation | Peter Collingbourne | 2011-11-21 | 1 | -1/+6 |
| * | Driver: Remove the signal number from the "command failed" diagnostic. | Benjamin Kramer | 2011-11-19 | 1 | -1/+1 |
| * | [driver] If we're only linking, don't warn about unused arguments which are | Chad Rosier | 2011-11-05 | 1 | -2/+3 |
| * | In addition to dumping preprocessed source, dump a script with the command line | Chad Rosier | 2011-11-02 | 1 | -2/+23 |
| * | Stop disabling integrated assembler with -static. <rdar://problem/10175391> | Bob Wilson | 2011-10-30 | 1 | -10/+2 |
| * | Use Triple.isOSDarwin() instead of comparing against Triple::Darwin. | Bob Wilson | 2011-10-14 | 1 | -1/+3 |
| * | Rip out flags for controlling C++ "production mode" separately. | Bob Wilson | 2011-10-04 | 1 | -4/+1 |
| * | Revert my --working-directory option, which wasn't well thought through. | Daniel Dunbar | 2011-09-30 | 1 | -8/+0 |
| * | Driver: Fix two bad typos that were breaking the buildbots. | Benjamin Kramer | 2011-09-28 | 1 | -2/+1 |
| * | Check for GCC paths that have the target triple in them. This is required fo... | David Chisnall | 2011-09-27 | 1 | -9/+22 |
| * | Rename Diagnostic to DiagnosticsEngine as per issue 5397 | David Blaikie | 2011-09-25 | 1 | -2/+3 |
| * | Driver: Use sys::Process::SetWorkingDirectory, for consistency. | Daniel Dunbar | 2011-09-23 | 1 | -7/+2 |
| * | Driver: Explicitly include <unistd.h>, libstdc++'s <map> pulls it in, libc++ ... | Benjamin Kramer | 2011-09-23 | 1 | -0/+6 |
| * | Driver: Add a --working-directory option which can be used to cause the compiler | Daniel Dunbar | 2011-09-23 | 1 | -0/+7 |
| * | Removing a bunch of dead returns/breaks after llvm_unreachables. | David Blaikie | 2011-09-23 | 1 | -1/+0 |
| * | More missing header inclusions from llvm_unreachable migration. | David Blaikie | 2011-09-23 | 1 | -0/+1 |
| * | Switch assert(0/false) llvm_unreachable. | David Blaikie | 2011-09-23 | 1 | -2/+2 |
| * | [driver] Add support for the COMPILER_PATH environment variable, which adds the | Chad Rosier | 2011-09-14 | 1 | -2/+10 |
| * | [driver] When clang crashes, don't try to generate diagnostics (i.e., | Chad Rosier | 2011-09-06 | 1 | -0/+17 |
| * | Add the resource directory to the search path for Driver::GetFilePath, | Peter Collingbourne | 2011-09-06 | 1 | -3/+8 |
| * | Cleanup r138662 per Ben and David's suggestions, thanks. | Chad Rosier | 2011-08-26 | 1 | -14/+7 |
| * | Make sure the std::string isn't deallocated prior to use. Many thanks to Eli | Chad Rosier | 2011-08-26 | 1 | -5/+5 |
| * | [driver] When generating temporary files allow a prefix to be added. In many | Chad Rosier | 2011-08-26 | 1 | -5/+17 |
| * | [driver] Do not add -kext to the link command line when compiling with | Chad Rosier | 2011-08-25 | 1 | -17/+0 |
| * | Add support for a verifier to the driver. Currently only verifies debug | Eric Christopher | 2011-08-23 | 1 | -2/+21 |
| * | [driver] Don't generate diagnostics (i.e., preprocessed source) if reading | Chad Rosier | 2011-08-18 | 1 | -2/+14 |
| * | Fix else style. No functionality change intended. | Chad Rosier | 2011-08-17 | 1 | -1/+2 |
| * | Fix typo. | Eric Christopher | 2011-08-17 | 1 | -9/+9 |
| * | [driver] When generating clang failure diagnostics, don't try to preprocess | Chad Rosier | 2011-08-12 | 1 | -0/+14 |
| * | [driver] Refactor a bit to enable a few fixes when generating diagnostics. N... | Chad Rosier | 2011-08-12 | 1 | -14/+25 |
| * | Fix cmake for r136702 (at least for the most part). Chandler has been kind | Chad Rosier | 2011-08-02 | 1 | -2/+2 |
| * | Temporarily revert parts of r136702 to make cmake builds happy. | Chad Rosier | 2011-08-02 | 1 | -2/+2 |
| * | When the compiler crashes, the compiler driver now produces diagnostic | Chad Rosier | 2011-08-02 | 1 | -9/+65 |
| * | The -fapple-kext flag was designed to "do the right thing" for building code for | Chad Rosier | 2011-07-27 | 1 | -28/+56 |
| * | Move ArrayRef to LLVM.h and eliminate now-redundant qualifiers, patch by Jon ... | Chris Lattner | 2011-07-23 | 1 | -2/+2 |
| * | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -16/+16 |
| * | Temporarily revert r135614 while I fix the cmake build. | Chad Rosier | 2011-07-20 | 1 | -65/+9 |
| * | When the compiler crashes, the compiler driver now produces diagnostic inform... | Chad Rosier | 2011-07-20 | 1 | -9/+65 |
| * | Correctly handle sysroot prefix in -print-search-dirs. Makes libtool | Joerg Sonnenberger | 2011-07-16 | 1 | -1/+10 |
| * | Prevent the -save-temps flag from modifying the input file if the input filename | Chad Rosier | 2011-07-15 | 1 | -0/+9 |
| * | Driver: Factor out IsUsingLTO helper function. | Daniel Dunbar | 2011-06-21 | 1 | -7/+14 |
| * | Identifiers with _CapitalLetter are reserved, so don't use them. Prefer the | Nick Lewycky | 2011-06-04 | 1 | -7/+7 |
| * | A StringRef-ication of the DiagnosticIDs API and internals. | Argyrios Kyrtzidis | 2011-05-25 | 1 | -3/+4 |
| * | Rename ContainsCompileAction to ContainsCompileOrAssembleAction to | Joerg Sonnenberger | 2011-05-06 | 1 | -5/+5 |
| * | Driver: Suppress some additional warnings with -Qunused-arguments. | Daniel Dunbar | 2011-04-20 | 1 | -0/+4 |