Clang Plugin issue

Hi, guys.
I have an issue with Clang Plugin, it’s pretty simple:
I want to use plugin within Xcode (for diagnostics purposes), but I can’t run plugin with 'system’ clang, it says 'error: unable to find plugin plugin_name’.

So question is: can I use clang plugin from Xcode without patching clang?

I’ve tried my custom plugin, and tried example from repo (print-fns), but have no luck.

system clang:

Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn)

Target: x86_64-apple-darwin13.0.0

Thread model: posix

clang built from source:

clang version 3.3.1

Target: x86_64-apple-darwin13.0.0

Thread model: posix

Xcode’s build of Clang does not support plugins—the symbols have been stripped. You’ll have to use your own Clang for that. Sorry!

Jordan