summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CompilerDriver/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Remove more of llvmc and dependencies.Eric Christopher2011-09-201-20/+0
| | | | llvm-svn: 140121
* Now to chant the magical incantation that will exorcise the System libraryCharles Davis2010-11-291-1/+1
| | | | | | | | from LLVM forever: grep -lR "llvm/System" * | grep -v .svn | xargs sed -ie 's#llvm/System#llvm/Support#g' llvm-svn: 120314
* have the makefiles check the llvm-config error code instead of chargingChris Lattner2010-09-011-1/+3
| | | | | | on an producing weird link errors. Patch by Yuri Gribov! llvm-svn: 112714
* llvmc: remove dynamic plugins.Mikhail Glushenkov2010-08-151-29/+2
| | | | llvm-svn: 111094
* Get rid of exceptions in llvmc.Mikhail Glushenkov2010-07-231-3/+0
| | | | | | llvmc can be now compiled with llvm-gcc on Windows. llvm-svn: 109215
* mark some libraries that currently require RTTI.Chris Lattner2010-01-241-0/+1
| | | | llvm-svn: 94377
* LLVMC can be now compiled w/o dynamic plugin support.Mikhail Glushenkov2009-07-041-0/+4
| | | | | | Controlled via the --enable-llvmc-dynamic-plugins option. llvm-svn: 74784
* Add --enable-llvmc-dynamic configure option.Mikhail Glushenkov2009-07-031-4/+13
| | | | | | | Controls whether libCompilerDriver should be loaded dynamically. By default this is needed only on Win32, to make dynamic plugins work. llvm-svn: 74759
* Fix install of libCompilerDriver dynamic library to not copy on every build.Daniel Dunbar2009-06-291-4/+5
| | | | llvm-svn: 74473
* Make dynamic LLVMC plugins work on Windows (finally!).Mikhail Glushenkov2009-06-291-2/+16
| | | | | | | | Implemented by making lib/CompilerDriver a shared library that holds all the global static data (CommandLine options, plugin registry) that we unfortunately have to live with. llvm-svn: 74417
* Reorganize llvmc code.Mikhail Glushenkov2009-03-021-0/+19
Move the code from 'llvmc/driver' into a new CompilerDriver library, and change the build system accordingly. Makes it easier for projects using LLVM to build their own llvmc-based drivers. Tested with objdir != srcdir. llvm-svn: 65821
OpenPOWER on IntegriCloud