| Commit message (Expand) | Author | Age | Files | Lines |
* | Driver: Remove the Job class. NFC | Justin Bogner | 2015-07-02 | 1 | -10/+6 |
* | Driver: Use pointee_iterator rather than iterating over unique_ptrs | Justin Bogner | 2014-10-03 | 1 | -3/+2 |
* | Teach Clang how to use response files when calling other tools | Reid Kleckner | 2014-09-15 | 1 | -1/+1 |
* | Fix some cases where StringRef was being passed by const reference. Remove co... | Craig Topper | 2014-08-30 | 1 | -2/+2 |
* | Update for llvm api change. | Rafael Espindola | 2014-08-25 | 1 | -4/+4 |
* | Remove unused sys/stat.h includes | Alp Toker | 2014-07-07 | 1 | -2/+0 |
* | Driver: Record that we're in crashdump and push flags to ConstructJob | Justin Bogner | 2014-06-20 | 1 | -3/+5 |
* | Replace llvm::error_code with std::error_code. | Rafael Espindola | 2014-06-12 | 1 | -1/+1 |
* | [C++11] Use 'nullptr'. Driver edition. | Craig Topper | 2014-05-17 | 1 | -3/+3 |
* | Update for llvm api change. | Rafael Espindola | 2014-02-24 | 1 | -1/+2 |
* | Remove a whole lot of unused variables | Alp Toker | 2013-11-27 | 1 | -2/+0 |
* | Move the execution code from Compilation::ExecuteCommand to Command::Execute | Hans Wennborg | 2013-09-12 | 1 | -11/+1 |
* | Move Compilation::PrintJob and PrintDiagnosticJob into Job::Print. | Hans Wennborg | 2013-09-12 | 1 | -132/+1 |
* | Remove the -ccc-echo option that is now unused. | Rafael Espindola | 2013-07-23 | 1 | -1/+1 |
* | Update for llvm API change. | Rafael Espindola | 2013-07-16 | 1 | -3/+2 |
* | Convert last use of PathV1.h in Compilation.cpp | Rafael Espindola | 2013-06-24 | 1 | -17/+20 |
* | Convert a use of PathV1.h | Rafael Espindola | 2013-06-24 | 1 | -2/+2 |
* | Use llvm::sys::fs::can_write. | Rafael Espindola | 2013-06-18 | 1 | -1/+2 |
* | Include PathV1.h only where it is used. | Rafael Espindola | 2013-06-17 | 1 | -0/+1 |
* | [Driver] Refactor clang driver to use LLVM's Option library | Reid Kleckner | 2013-06-14 | 1 | -1/+2 |
* | Use the sys::ExecuteAndWait that takes StringRefs. | Rafael Espindola | 2013-06-13 | 1 | -4/+5 |
* | Use the global functions instead of the Program methods. | Rafael Espindola | 2013-06-12 | 1 | -5/+3 |
* | [driver] Do not generate crash diagnostics if the compilation command failed | Chad Rosier | 2013-03-26 | 1 | -2/+3 |
* | [driver] The failure of any phase (e.g., preprocess, compile, assemble) for a | Chad Rosier | 2013-02-27 | 1 | -1/+28 |
* | Form the default -fmodules-cache-path= properly. | Douglas Gregor | 2013-02-07 | 1 | -1/+1 |
* | [driver] Clear the FailureResultFiles when initializing clang diagnostics. Also, | Chad Rosier | 2013-01-29 | 1 | -0/+1 |
* | [driver] Refactor the driver so that a failing commands doesn't prevent | Chad Rosier | 2013-01-29 | 1 | -8/+8 |
* | [driver] Associate a JobAction with each result file. This enables the driver | Chad Rosier | 2013-01-24 | 1 | -25/+42 |
* | [Driver] Don't remove non-regular files that were outputs. | Daniel Dunbar | 2013-01-23 | 1 | -3/+3 |
* | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 2012-12-04 | 1 | -4/+2 |
* | Use empty parens for empty function parameter list instead of '(void)'. | Dmitri Gribenko | 2012-11-15 | 1 | -2/+2 |
* | [driver] Remove an extra space with the -iprefix option, so that | Chad Rosier | 2012-10-31 | 1 | -1/+1 |
* | [driver] Remove an extra space with the -internal-externc-isystem option, so | Chad Rosier | 2012-10-31 | 1 | -1/+1 |
* | [driver] Completely rework how superfluous options are stripped out of the crash | Chad Rosier | 2012-10-31 | 1 | -0/+100 |
* | Use array_lengthof instead of sizeof trickery. | Chad Rosier | 2012-05-03 | 1 | -2/+1 |
* | Canonicalize loop. | Chad Rosier | 2012-05-03 | 1 | -1/+2 |
* | use DEFAULT_SYSROOT | Sebastian Pop | 2012-04-16 | 1 | -0/+4 |
* | Add the depfile as a result file so that it is deleted if we crash, | Peter Collingbourne | 2011-11-06 | 1 | -2/+6 |
* | Use strpbrk(3) instead of open coding it. | Benjamin Kramer | 2011-10-06 | 1 | -8/+1 |
* | [driver] For consistency, handle all shell special characters handled by the | Chad Rosier | 2011-10-05 | 1 | -1/+1 |
* | [driver] The -v option doesn't quoted the command line arguments for historical | Chad Rosier | 2011-10-05 | 1 | -1/+8 |
* | When the compiler crashes, the compiler driver now produces diagnostic | Chad Rosier | 2011-08-02 | 1 | -4/+33 |
* | Unbreak the MSVC build, using namespace clang is required otherwise MSVC will... | Francois Pichet | 2011-07-23 | 1 | -0/+2 |
* | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -2/+2 |
* | Temporarily revert r135614 while I fix the cmake build. | Chad Rosier | 2011-07-20 | 1 | -35/+4 |
* | When the compiler crashes, the compiler driver now produces diagnostic inform... | Chad Rosier | 2011-07-20 | 1 | -4/+35 |
* | Missing header from last commit; accidental change. | John McCall | 2011-07-06 | 1 | -1/+0 |
* | Change the driver's logic about Objective-C runtimes: abstract out a | John McCall | 2011-07-06 | 1 | -0/+1 |
* | Driver: When compilation fails, don't try to remove output files we don't have | Daniel Dunbar | 2011-04-25 | 1 | -0/+6 |
* | Remove stray emacs mode markers in all these files that was causing emacs to | Nick Lewycky | 2010-12-31 | 1 | -1/+1 |