Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename Unix/*.cpp and Win32/*.cpp to have a *.inc suffix so that the silly | Reid Spencer | 2005-01-09 | 1 | -127/+0 |
| | | | | | | | gdb debugger doesn't get confused on which file it is reading (the one in lib/System or the one in lib/System/{Win32,Unix}) llvm-svn: 19426 | ||||
* | Fix MINGW compilation errors | Jeff Cohen | 2004-12-30 | 1 | -2/+2 |
| | | | | llvm-svn: 19190 | ||||
* | mingw doesn't support the official debug API. | Jeff Cohen | 2004-12-25 | 1 | -9/+28 |
| | | | | | | | Old versions of the C runtime somehow get loaded into the process. Make sure they aren't searched for symbols. llvm-svn: 19141 | ||||
* | Eliminate use of ltdl.c when doing a VC++ build. Because libtool isn't used, | Jeff Cohen | 2004-12-24 | 1 | -17/+72 |
| | | | | | | ltdl's LGPL license would infect all of LLVM. llvm-svn: 19137 | ||||
* | Resurrect this file. | Reid Spencer | 2004-12-24 | 1 | -0/+53 |
| | | | | llvm-svn: 19130 | ||||
* | Remove these files as they are not being included any more. DynamicLibrary | Reid Spencer | 2004-12-24 | 1 | -53/+0 |
| | | | | | | | is now implemented via ltdl.cpp which has its own way of dealing with the different platforms. llvm-svn: 19129 | ||||
* | Fix residual Visual Studio build problems | Jeff Cohen | 2004-12-09 | 1 | -11/+7 |
| | | | | llvm-svn: 18688 | ||||
* | Implement the default constructor which causes the current program to be | Reid Spencer | 2004-11-29 | 1 | -4/+10 |
| | | | | | | opened as if it was a dynamic library so its symbols can be searched too. llvm-svn: 18341 | ||||
* | Cast the void* handle data member to HMODULE* to keep the VC++ compiler | Reid Spencer | 2004-11-20 | 1 | -5/+9 |
| | | | | | | happy. Thanks to Henrik Bach for pointing this out. llvm-svn: 18056 | ||||
* | Dynamic Library abstraction. This makes the abstraction of a single dynamic | Reid Spencer | 2004-11-18 | 1 | -0/+47 |
library (shared library/shared object) whose symbols can be looked up dynamically. Used for plug-ins. llvm-svn: 17940 |