Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-12-18 | Support/PathV1: Deprecate get{Basename,Dirname,Suffix}. | Michael J. Spencer | 3 | -5/+5 | |
llvm-svn: 122157 | |||||
2010-12-18 | Revert r122143 through r122140, which collectively broke the LLVMC tests on | Owen Anderson | 3 | -4/+5 | |
the buildbots. llvm-svn: 122149 | |||||
2010-12-18 | Support/PathV1: Deprecate get{Basename,Dirname,Suffix}. | Michael J. Spencer | 3 | -5/+4 | |
llvm-svn: 122141 | |||||
2010-12-17 | Support/Path: Deprecate PathV1::isAbsolute. | Michael J. Spencer | 1 | -1/+1 | |
llvm-svn: 122086 | |||||
2010-11-29 | Now to chant the magical incantation that will exorcise the System library | Charles Davis | 2 | -2/+2 | |
from LLVM forever: grep -lR "llvm/System" * | grep -v .svn | xargs sed -ie 's#llvm/System#llvm/Support#g' llvm-svn: 120314 | |||||
2010-11-29 | I swear I did a make clean and make before committing all this... | Michael J. Spencer | 3 | -4/+4 | |
llvm-svn: 120304 | |||||
2010-11-03 | Rename FindExecutable to PrependMainExecutablePath. | Mikhail Glushenkov | 1 | -1/+2 | |
Makes it more clear that it is just a path manipulation function. llvm-svn: 118174 | |||||
2010-11-02 | llvmc: Fix tool finding logic. | Mikhail Glushenkov | 1 | -8/+8 | |
llvm-svn: 118056 | |||||
2010-10-28 | llvmc: Make ExecuteProgram() look in the driver directory first. | Mikhail Glushenkov | 1 | -3/+6 | |
llvm-svn: 117584 | |||||
2010-09-21 | llvmc: Allow multiple output languages. | Mikhail Glushenkov | 1 | -23/+35 | |
llvm-svn: 114433 | |||||
2010-09-15 | llvmc: make -x work with unknown suffixes. | Mikhail Glushenkov | 1 | -2/+3 | |
llvm-svn: 113972 | |||||
2010-09-13 | Revert "CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally." | Michael J. Spencer | 1 | -0/+1 | |
This reverts commit r113632 Conflicts: cmake/modules/AddLLVM.cmake llvm-svn: 113819 | |||||
2010-09-10 | CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally. | Michael J. Spencer | 1 | -1/+0 | |
llvm-svn: 113632 | |||||
2010-09-01 | have the makefiles check the llvm-config error code instead of charging | Chris Lattner | 1 | -1/+3 | |
on an producing weird link errors. Patch by Yuri Gribov! llvm-svn: 112714 | |||||
2010-08-23 | Add a TODO. | Mikhail Glushenkov | 1 | -0/+1 | |
llvm-svn: 111828 | |||||
2010-08-23 | llvmc: Properly handle (error) in edge properties. | Mikhail Glushenkov | 1 | -5/+10 | |
llvm-svn: 111827 | |||||
2010-08-20 | llvmc: Cut global namespace pollution. | Mikhail Glushenkov | 1 | -1/+3 | |
llvm-svn: 111619 | |||||
2010-08-15 | llvmc: remove dynamic plugins. | Mikhail Glushenkov | 3 | -118/+9 | |
llvm-svn: 111094 | |||||
2010-07-27 | Fix silent failure with no input files. | Mikhail Glushenkov | 1 | -0/+7 | |
llvm-svn: 109500 | |||||
2010-07-27 | Return -1 only on failure to execute a program. | Mikhail Glushenkov | 2 | -20/+22 | |
Also fix some comments. llvm-svn: 109499 | |||||
2010-07-23 | Formatting. | Mikhail Glushenkov | 1 | -1/+1 | |
llvm-svn: 109216 | |||||
2010-07-23 | Get rid of exceptions in llvmc. | Mikhail Glushenkov | 5 | -162/+247 | |
llvmc can be now compiled with llvm-gcc on Windows. llvm-svn: 109215 | |||||
2010-07-01 | 80-col violation. | Mikhail Glushenkov | 1 | -1/+2 | |
llvm-svn: 107361 | |||||
2010-05-20 | Print a space after the colon. | Mikhail Glushenkov | 1 | -2/+2 | |
llvm-svn: 104279 | |||||
2010-05-20 | llvmc: Make segfault detection work on Win32. | Mikhail Glushenkov | 1 | -21/+28 | |
llvm-svn: 104261 | |||||
2010-05-19 | llvmc: report an error if a child process segfaults. | Mikhail Glushenkov | 1 | -1/+14 | |
llvm-svn: 104145 | |||||
2010-03-05 | Use FindExecutable as a fall-back search method. | Mikhail Glushenkov | 1 | -2/+13 | |
Allows us to find executables that are in the same directory. llvm-svn: 97786 | |||||
2010-02-23 | Input files with empty suffixes must be passed to linker. | Mikhail Glushenkov | 1 | -1/+2 | |
llvm-svn: 96927 | |||||
2010-02-23 | Temporary disable response files. | Mikhail Glushenkov | 1 | -1/+2 | |
They are giving us problems on Mac. llvm-svn: 96925 | |||||
2010-02-23 | Implement order-preserving option forwarding. | Mikhail Glushenkov | 1 | -1/+13 | |
Needed to correctly handle things like 'llvmc -framework Foo foo.o -framework Bar bar.o' - before this commit all '-framework' options would've been grouped together in the beginning. Due to our dependence on CommandLine this turned out to be a giant hack; we will migrate away from CommandLine eventually. llvm-svn: 96922 | |||||
2010-02-23 | Correct option forwarding: initial implementation. | Mikhail Glushenkov | 1 | -0/+9 | |
Does not work, but the infrastructure changes are in place. llvm-svn: 96920 | |||||
2010-02-23 | New experimental/undocumented feature: 'works_on_empty'. | Mikhail Glushenkov | 2 | -5/+1 | |
For now, just enough support to make -filelist work. llvm-svn: 96918 | |||||
2010-01-26 | Better error message. | Mikhail Glushenkov | 1 | -2/+4 | |
llvm-svn: 94544 | |||||
2010-01-24 | mark some libraries that currently require RTTI. | Chris Lattner | 1 | -0/+1 | |
llvm-svn: 94377 | |||||
2009-12-17 | Make Path use StringRef instead of std::string where possible. | Jeffrey Yasskin | 1 | -1/+1 | |
llvm-svn: 91620 | |||||
2009-11-30 | Fix last DOTGraphTraits problems in CompilationGraph. | Tobias Grosser | 1 | -0/+1 | |
llvm-svn: 90136 | |||||
2009-11-30 | Remove forgotten ShortNames in Trie and CompilationGraph | Tobias Grosser | 1 | -2/+1 | |
llvm-svn: 90135 | |||||
2009-11-11 | Remove dead code. | Rafael Espindola | 1 | -5/+0 | |
llvm-svn: 86802 | |||||
2009-11-07 | llvmc: Add a '-time' option. | Mikhail Glushenkov | 3 | -5/+48 | |
llvm-svn: 86348 | |||||
2009-10-17 | First draft of the OptionPreprocessor. | Mikhail Glushenkov | 2 | -12/+10 | |
More to follow... llvm-svn: 84352 | |||||
2009-08-23 | convert LoopInfo.h and GraphWriter.h to use raw_ostream | Chris Lattner | 1 | -3/+3 | |
llvm-svn: 79836 | |||||
2009-07-11 | Delete the temp dir even when '--temp-dir' is specified. | Mikhail Glushenkov | 1 | -2/+1 | |
llvm-svn: 75374 | |||||
2009-07-09 | Remove some duplication. | Mikhail Glushenkov | 1 | -17/+17 | |
llvm-svn: 75163 | |||||
2009-07-09 | Rename -t to --temp-dir. | Mikhail Glushenkov | 1 | -2/+2 | |
-t is already used by gcc in the meaning 'ld -t' (trace). The Base plugin may want to emulate this behaviour. llvm-svn: 75162 | |||||
2009-07-09 | Fixed handling of -t. It gets the prirority for temp dir name. | Sanjiv Gupta | 1 | -0/+1 | |
llvm-svn: 75154 | |||||
2009-07-09 | Missing ) | Bill Wendling | 1 | -1/+1 | |
llvm-svn: 75126 | |||||
2009-07-09 | Add a -t="dir" option to the driver. This can be used to specify the ↵ | Sanjiv Gupta | 2 | -0/+11 | |
directory to be used as TempDir if somebody doesn't want to use the standard /tmp. llvm-svn: 75121 | |||||
2009-07-07 | Have scoped mutexes take referenes instead of pointers. | Owen Anderson | 1 | -4/+4 | |
llvm-svn: 74931 | |||||
2009-07-06 | Reverting back the changes checked-in accidently. | Sanjiv Gupta | 2 | -13/+1 | |
llvm-svn: 74823 | |||||
2009-07-06 | Implement _CONFIG macro to allow users to se to configuration settings on ↵ | Sanjiv Gupta | 2 | -1/+13 | |
the part. Implement _section macro to allow users to place objects in specific sections. Implement _address macro to allow users to place objects at a particular address. Placing objects at a memory address: crate a unique section name from varname, address, object type and put that section at specified address. Mark this section a full (size = banksize) so that other objects do not compete for it while placing objects to sections in AsmPrinter. llvm-svn: 74822 |