llvm-project/clang/examples/PrintFunctionNames
Douglas Gregor 9f39a765e2 Update signature of HandleTopLevelDecl.
llvm-svn: 145001
2011-11-19 19:22:13 +00:00
..
CMakeLists.txt Re-instate r125819 and r125820 with no functionality change 2011-02-19 23:03:58 +00:00
Makefile make `make` work in examples/PrintFucntionNames on Mac. I checked that it still works on Linux. 2011-01-26 21:28:52 +00:00
PrintFunctionNames.cpp Update signature of HandleTopLevelDecl. 2011-11-19 19:22:13 +00:00
PrintFunctionNames.exports Use an export file. Plugins must export llvm::Registry symbols. 2010-07-26 21:12:10 +00:00
README.txt make `make` work in examples/PrintFucntionNames on Mac. I checked that it still works on Linux. 2011-01-26 21:28:52 +00:00

README.txt

This is a simple example demonstrating how to use clang's facility for
providing AST consumers using a plugin.

Build the plugin by running `make` in this directory.

Once the plugin is built, you can run it using:
--
Linux:
$ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.so -plugin print-fns some-input-file.c

Mac:
$ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.dylib -plugin print-fns some-input-file.c