freebsd_amp_hwpstate/examples/PrintFunctionNames
Dimitry Andric 9f4dbff666 Vendor import of clang RELEASE_350/final tag r216957 (effectively, 3.5.0 release):
https://llvm.org/svn/llvm-project/cfe/tags/RELEASE_350/final@216957
2014-11-24 09:15:30 +00:00
..
CMakeLists.txt Vendor import of clang RELEASE_350/final tag r216957 (effectively, 3.5.0 release): 2014-11-24 09:15:30 +00:00
Makefile Vendor import of clang RELEASE_350/final tag r216957 (effectively, 3.5.0 release): 2014-11-24 09:15:30 +00:00
PrintFunctionNames.cpp Vendor import of clang RELEASE_350/final tag r216957 (effectively, 3.5.0 release): 2014-11-24 09:15:30 +00:00
PrintFunctionNames.exports Vendor import of clang RELEASE_350/final tag r216957 (effectively, 3.5.0 release): 2014-11-24 09:15:30 +00:00
README.txt Vendor import of clang trunk r154661: 2012-04-14 14:01:31 +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
$ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.so -plugin print-fns -plugin-arg-print-fns help -plugin-arg-print-fns --example-argument some-input-file.c
$ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.so -plugin print-fns -plugin-arg-print-fns -an-error some-input-file.c

Mac:
$ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.dylib -plugin print-fns some-input-file.c
$ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.dylib -plugin print-fns -plugin-arg-print-fns help -plugin-arg-print-fns --example-argument some-input-file.c
$ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.dylib -plugin print-fns -plugin-arg-print-fns -an-error some-input-file.c