You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[MERGE #1847@jianchun] swb,plugin: cleanup, support OSX and plugin arguments
Merge pull request #1847 from jianchun:wbarg
Make the clang plugin work on OSX.
OSX note: Must run the same clang binary for which the plugin was built for. e.g.:
```
./build.sh -n -d --icu=/usr/local/opt/icu4c/include/ \
--cxx=/usr/local/opt/llvm/bin/clang++ \
--cc=/usr/local/opt/llvm/bin/clang \
--wb-check lib/Runtime/Base/FunctionBody.cpp
```
Clean up plugin build script and sources.
Add plugin arguments support. Arguments can be directly passed from top
level "build.sh".
Changed --wb-check default output to "ERROR" only. To output verbose, use
plugin argument "-verbose":
```
build.sh -n -d --wb-check lib/Runtime/Base/FunctionBody.cpp \
--wb-args=-verbose
```
0 commit comments