llvm-project/clang/examples/PrintFunctionNames
Eli Friedman f42db7ce48 Fix examples for r140478. PR11021.
llvm-svn: 140618
2011-09-27 18:33:47 +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 Fix examples for r140478. PR11021. 2011-09-27 18:33:47 +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