| Commit message (Expand) | Author | Age | Files | Lines |
| * | 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 |
| * | Driver: Support -fno-lto. | Daniel Dunbar | 2011-04-18 | 1 | -1/+2 |
| * | refactor -ccc-gcc-name code | Dylan Noblesmith | 2011-04-09 | 1 | -15/+1 |
| * | Driver: Sketch driver support for a CC_LOG_DIAGNOSTICS options, similar to the | Daniel Dunbar | 2011-04-07 | 1 | -4/+6 |
| * | Move Driver::createInvocationFromArgs function to Frontend library to avoid d... | Argyrios Kyrtzidis | 2011-04-04 | 1 | -70/+0 |
| * | Introduce Driver::createInvocationFromArgs used to create a CompilerInvocatio... | Argyrios Kyrtzidis | 2011-04-04 | 1 | -0/+70 |
| * | Driver/Darwin: Dsymutil actions should put the dSYM adjacent to the output file. | Daniel Dunbar | 2011-03-25 | 1 | -1/+7 |
| * | switch a few Driver APIs to use llvm::ArrayRef, cleaning up code. | Chris Lattner | 2011-03-23 | 1 | -7/+5 |
| * | Memorize presence/absence of -nostdlib in Driver. | Joerg Sonnenberger | 2011-03-21 | 1 | -2/+4 |
| * | Remember sysroot in Driver. Pass it down to ld for NetBSD, FreeBSD | Joerg Sonnenberger | 2011-03-21 | 1 | -2/+14 |
| * | Driver: Give SelectTool access to the action inputs. | Daniel Dunbar | 2011-03-18 | 1 | -2/+3 |
| * | On !Darwin, do use the integrated as with -static. | Rafael Espindola | 2011-03-18 | 1 | -1/+3 |
| * | Use C as fallback type if in C preprocessor mode. | Joerg Sonnenberger | 2011-03-16 | 1 | -4/+9 |
| * | Redo part of r127137: | Joerg Sonnenberger | 2011-03-07 | 1 | -5/+5 |
| * | Explicitly initialize CCCIsCPP | Joerg Sonnenberger | 2011-03-07 | 1 | -2/+2 |
| * | If called as *cpp or *cpp-[^-]*, run only the preprocessor. If no | Joerg Sonnenberger | 2011-03-06 | 1 | -6/+16 |
| * | Normalize target triple passed out of driver. Basically this means | Anton Korobeynikov | 2011-03-05 | 1 | -1/+1 |
| * | Triple::MinGW64 is deprecated and removed. We can use Triple::MinGW32 instead. | NAKAMURA Takumi | 2011-02-17 | 1 | -1/+0 |
| * | Allow multiple -B prefixes. Patch by Joerg Sonnenberger. | Benjamin Kramer | 2011-02-08 | 1 | -6/+12 |
| * | Moved here from LLVM Clang's configuration options and related macros. | Oscar Fuentes | 2011-02-03 | 1 | -0/+4 |
| * | clang: Add support for a CC_PRINT_HEADERS environment variable, which mirrors | Daniel Dunbar | 2011-02-02 | 1 | -2/+3 |
| * | Add NetBSD target support. Patch by Joerg Sonnenberger. | Benjamin Kramer | 2011-02-02 | 1 | -0/+2 |
| * | Driver: Change -dumpversion to return a GCC compatible answer. | Daniel Dunbar | 2011-01-12 | 1 | -1/+7 |
| * | Replace all uses of PathV1::exists with PathV2::fs::exists. | Michael J. Spencer | 2011-01-10 | 1 | -4/+10 |
| * | Replace all uses of PathV1::get{Basename,Dirname,Suffix} with their PathV2 eq... | Michael J. Spencer | 2010-12-18 | 1 | -12/+7 |
| * | Replace all uses of PathV1::getLast with PathV2::filename. | Michael J. Spencer | 2010-12-18 | 1 | -5/+5 |