| Commit message (Expand) | Author | Age | Files | Lines |
* | hopefully fix VC++ build error. | Chris Lattner | 2009-03-26 | 1 | -0/+1 |
* | Driver: Prep for tool chain specific argument translation. | Daniel Dunbar | 2009-03-25 | 1 | -5/+6 |
* | Driver: Handle -flto, -O4, and tweak -emit-llvm to match llvm-gcc. | Daniel Dunbar | 2009-03-24 | 1 | -2/+9 |
* | Driver: Warn when 'clang' is used to compile a source file we could | Daniel Dunbar | 2009-03-24 | 1 | -3/+9 |
* | Driver: Change default use of "clang" compiler. | Daniel Dunbar | 2009-03-24 | 1 | -12/+18 |
* | Move ToolChain::ShouldUseClangCompiler to | Daniel Dunbar | 2009-03-24 | 1 | -0/+27 |
* | Driver: Setup file and program search paths in tool chains. | Daniel Dunbar | 2009-03-23 | 1 | -9/+2 |
* | Driver: Implement 'missing argument' error. | Daniel Dunbar | 2009-03-22 | 1 | -9/+14 |
* | ccc/Driver: .s defaults to 'assembler-with-cpp' on Darwin. | Daniel Dunbar | 2009-03-20 | 1 | -2/+4 |
* | Driver: Add Arg::getAsString and use when dumping arguments to | Daniel Dunbar | 2009-03-20 | 1 | -6/+6 |
* | Driver: Implement -print-search-dirs. | Daniel Dunbar | 2009-03-20 | 1 | -0/+19 |
* | Driver: Temporary hack to allow -ccc-print-bindings to work (for | Daniel Dunbar | 2009-03-20 | 1 | -1/+4 |
* | Driver: Claim unused input arguments when emitting "input file unused" | Daniel Dunbar | 2009-03-19 | 1 | -0/+2 |
* | Driver: Claim -arch options when pipelining, and claim arguments that | Daniel Dunbar | 2009-03-19 | 1 | -1/+2 |
* | Driver: Handle "linker input" arguments. | Daniel Dunbar | 2009-03-19 | 1 | -6/+9 |
* | Driver: Forcibly disable pipe support until we can execute them, the | Daniel Dunbar | 2009-03-18 | 1 | -1/+13 |
* | Driver: Delete the temporary files llvm::sys::Path::makeUnique | Daniel Dunbar | 2009-03-18 | 1 | -0/+4 |
* | Driver: Cleanup temporary/result files. | Daniel Dunbar | 2009-03-18 | 1 | -1/+1 |
* | Driver: Lookup program names using llvm::sys::Program::FindProgramByName | Daniel Dunbar | 2009-03-18 | 1 | -0/+6 |
* | The eventual name of this will be clang, might as well start now. | Mike Stump | 2009-03-18 | 1 | -1/+1 |
* | Driver: Support ToolChain specific path lists to search for files and | Daniel Dunbar | 2009-03-18 | 1 | -2/+25 |
* | Driver: Construct temporary file names. | Daniel Dunbar | 2009-03-18 | 1 | -5/+17 |
* | Add revision information. | Mike Stump | 2009-03-18 | 1 | -2/+7 |
* | Driver: Don't warn about unused arguments if there are Driver errors | Daniel Dunbar | 2009-03-18 | 1 | -2/+5 |
* | Fix URL trimming for version information. | Mike Stump | 2009-03-18 | 1 | -1/+1 |
* | Improve version number. | Mike Stump | 2009-03-18 | 1 | -2/+13 |
* | Driver: Bug fix, derived .gch names sometimes started with "/". | Daniel Dunbar | 2009-03-18 | 1 | -1/+4 |
* | Driver: Add assert and FIXME; arguments which act as linker inputs | Daniel Dunbar | 2009-03-18 | 1 | -0/+3 |
* | Driver: ConstructJob also needs to know the destination (where to put | Daniel Dunbar | 2009-03-18 | 1 | -1/+2 |
* | Driver: Print version on stderr to match [gc]cc. | Daniel Dunbar | 2009-03-18 | 1 | -1/+1 |
* | Driver: Claim inputs when we bind the InputAction. | Daniel Dunbar | 2009-03-18 | 1 | -0/+1 |
* | Driver: Don't claim inputs when pipelining, a tool should eventually | Daniel Dunbar | 2009-03-18 | 1 | -1/+0 |
* | Driver: Add a dash of const. | Daniel Dunbar | 2009-03-18 | 1 | -1/+0 |
* | Driver: Stub out Tool::ConstructJob. | Daniel Dunbar | 2009-03-18 | 1 | -2/+3 |
* | Driver: Add two normalizations for powerpc. | Daniel Dunbar | 2009-03-18 | 1 | -0/+2 |
* | Driver: Ditch Driver::DefaultToolChain, this can vary between compilations. | Daniel Dunbar | 2009-03-18 | 1 | -23/+20 |
* | Driver: Move actions into Compilation, and construct the compilation | Daniel Dunbar | 2009-03-18 | 1 | -35/+37 |
* | Driver: Add test for binding of precompile; exposed bug due to my | Daniel Dunbar | 2009-03-18 | 1 | -1/+1 |
* | Driver: Use PrettyStackTrace. | Daniel Dunbar | 2009-03-18 | 1 | -0/+11 |
* | Driver: Release Host, ToolChain, and Tool implementations. | Daniel Dunbar | 2009-03-18 | 1 | -0/+1 |
* | Driver: Add -ccc-print-bindings option (for testing); the Python | Daniel Dunbar | 2009-03-17 | 1 | -15/+22 |
* | Driver: Make sure to get the default arch name from the tool chain, not the | Daniel Dunbar | 2009-03-17 | 1 | -1/+3 |
* | Driver: Pass Driver reference down into Host info, which will need it | Daniel Dunbar | 2009-03-17 | 1 | -4/+6 |
* | Driver: Hide HostInfo implementations. | Daniel Dunbar | 2009-03-17 | 1 | -3/+11 |
* | Driver: Add logic for computing where to put job outputs (pipe, | Daniel Dunbar | 2009-03-17 | 1 | -1/+72 |
* | Fix unused variable warning in -Asserts mode. | Daniel Dunbar | 2009-03-17 | 1 | -0/+1 |
* | Driver: Implement majority tool binding logic. | Daniel Dunbar | 2009-03-16 | 1 | -2/+146 |
* | Driver: Migrate some data into the Compilation; after pipelining | Daniel Dunbar | 2009-03-16 | 1 | -16/+18 |
* | Driver: Sketch Tool and ToolChain classes. | Daniel Dunbar | 2009-03-16 | 1 | -2/+8 |
* | Driver: claim input arguments when building phases. | Daniel Dunbar | 2009-03-15 | 1 | -0/+2 |