From: Daniel Dunbar Date: Tue, 5 Jan 2010 21:42:23 +0000 (+0000) Subject: Fix -plugin command line argument syntax for clang -cc1 change. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b469546a3bab426eec05fd21dd90a81cf75942da;p=clang Fix -plugin command line argument syntax for clang -cc1 change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@92780 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/examples/PrintFunctionNames/README.txt b/examples/PrintFunctionNames/README.txt index ee6f7e865e..267865c903 100644 --- a/examples/PrintFunctionNames/README.txt +++ b/examples/PrintFunctionNames/README.txt @@ -6,5 +6,5 @@ TOOL_NO_EXPORT in the tools/clang Makefile). Once the plugin is built, you can run it using: -- -$ clang -cc1 -load path/to/PrintFunctionNames.so -plugin=print-fns some-input-file.c +$ clang -cc1 -load path/to/PrintFunctionNames.so -plugin print-fns some-input-file.c --