hanchenye-llvm-project/clang/examples/PrintFunctionNames
Peter Collingbourne 8f5cf74c77 Re-instate r125819 and r125820 with no functionality change
llvm-svn: 126060
2011-02-19 23:03:58 +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 Frontend: Change PluginASTAction::ParseArgs to take a CompilerInstance object 2010-08-02 15:31:28 +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