summaryrefslogtreecommitdiffstats
path: root/clang/examples/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Remove autoconf supportChris Bieneman2016-01-261-14/+0
| | | | | | | | | | | | | | | | | Summary: This patch is provided in preparation for removing autoconf on 1/26. The proposal to remove autoconf on 1/26 was discussed on the llvm-dev thread here: http://lists.llvm.org/pipermail/llvm-dev/2016-January/093875.html "This is the way [autoconf] ends Not with a bang but a whimper." -T.S. Eliot Reviewers: chandlerc, grosbach, bob.wilson, echristo Subscribers: klimek, cfe-commits Differential Revision: http://reviews.llvm.org/D16472 llvm-svn: 258862
* examples/analyzer-plugin: hook up to buildDylan Noblesmith2012-02-131-1/+1
| | | | | | | | | | | This was never being compiled at all and was bitrotting as a result. Also compile SampleAnalyzerPlugin as a module, not a library, and fix a mistake with not passing the source files to add_clang_library(). llvm-svn: 150378
* Reverts the Tooling changes as requested by Chris.Manuel Klimek2011-06-021-1/+1
| | | | llvm-svn: 132462
* Fixes Makefile based build for examples/Tooling.Manuel Klimek2011-06-011-1/+1
| | | | llvm-svn: 132380
* Remove wpa 'example', it isn't being maintained.Daniel Dunbar2010-08-111-1/+1
| | | | llvm-svn: 110809
* Makefile: Switch Clang Makefiles to always include the top-level Clang Makefile.Daniel Dunbar2010-06-081-2/+2
| | | | | | - This eliminates most dependencies on how Clang is installed relative to LLVM. llvm-svn: 105637
* Add a minimal C interpreter example.Daniel Dunbar2010-02-251-1/+1
| | | | | | | | | | | | | | | | | | - Demonstrates how to build a standalone tool which loads source code using the Driver and Frontend libraries, and then uses CodeGen and the JIT to actually execute the code. - Still more complicated than it should be, but hey its only 153 lines. :) -- ddunbar@ozzy:tmp$ cat hello.c #include <stdio.h> int main() { printf("hello world\n"); return 0; } ddunbar@ozzy:tmp$ clang-interpreter hello.c hello world -- llvm-svn: 97133
* Add a trivial example plugin, which prints the names of the top-level decls.Daniel Dunbar2009-11-151-1/+1
| | | | | | - The build scriptage is about twice as long as the code, which is nice. :) llvm-svn: 88826
* Add examples dir, built with BUILD_EXAMPLES=1 (Makefiles, no CMake ↵Daniel Dunbar2009-11-151-0/+14
equivalent yet). Move tools/wpa to examples/wpa, and unbreak its build. llvm-svn: 88825
OpenPOWER on IntegriCloud