-
Notifications
You must be signed in to change notification settings - Fork 0
/
clazy.cmake
117 lines (104 loc) · 3.53 KB
/
clazy.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/usr/bin/env sh
libdir=@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@
sharedir=@CMAKE_INSTALL_PREFIX@/@SHARE_INSTALL_DIR@/clazy
HELP() {
echo "Usage: `basename $0` [options] [clang++-options]"
echo
echo "Static analyzer for C++/Qt code"
echo
echo "Options:"
echo " --help print program help"
echo " --version print the program version"
echo " --list print a list of all available checkers, arranged by level"
echo " --explain [regexp] print explanations for the checker matching a regexp"
echo "or"
echo " --explain print explanations for all checkers"
echo
echo "Any of the options above will print the requested information and then exit."
echo
echo "Convenience Options:"
echo " --qt4compat Qt4 compatibility mode. useful for source code that can build with Qt4"
echo " (this is the same as passing \"-Xclang -plugin-arg-clang-lazy -Xclang qt4-compat\")"
echo " --qtdeveloper Special option for building Qt5 itself resulting in fewer false positives"
echo " (this is the same as passing \"-Xclang -plugin-arg-clang-lazy -Xclang qt-developer\")"
echo
echo "All other options are passed directly to clang++ and handled from there."
echo
echo "See the clang++ manual for a list of the very large set of options available"
echo
}
VERSION() {
echo "clazy version: @CLAZY_PRINT_VERSION@"
${CLANGXX:-clang++} --version | head -1 | awk '{printf("clang++ Version: %s\n",$3)}'
}
PRLIST() {
echo ""
echo "Checks from level$1. $2:"
ls -1 $sharedir/doc/level$1/README* | awk -F/ '{printf(" %s\n", $NF)}' | sed s/README-// | sed s/\.md$// | sort
}
PRINFO() {
lst=`ls -1 $sharedir/doc/level*/README*$1*`
for f in $lst
do
l=`echo $f | awk -F/ '{foo=NF-1; printf(" %s:%s\n", $foo,$NF)}'`
level=`echo $l | cut -d: -f1`
checker=`echo $l | cut -d: -f2 | sed s/README-// | sed s/\.md$//`
echo "== Explanation for checker $checker ($level) =="
cat $f
echo
done
}
if ( test $# -gt 0 -a "$1" = "--help" )
then
HELP
exit
fi
if ( test $# -gt 0 -a "$1" = "--version" )
then
VERSION
exit
fi
if ( test $# -gt 0 -a "$1" = "--list" )
then
echo "List of available clazy checkers:"
PRLIST 0 "Very stable checks, 100% safe, no false-positives"
PRLIST 1 "Mostly stable and safe, rare false-positives"
PRLIST 2 "Sometimes has false-positives (20-30%)"
PRLIST 3 "Not always correct, high rate of false-positives"
exit
fi
if ( test $# -gt 0 -a "$1" = "--explain" )
then
shift
PRINFO $@
exit
fi
ExtraClangOptions=""
if ( test $# -gt 0 -a "$1" = "--qt4compat" )
then
shift
ExtraClangOptions="-Xclang -plugin-arg-clang-lazy -Xclang qt4-compat"
fi
if ( test $# -gt 0 -a "$1" = "--qtdeveloper" )
then
shift
ExtraClangOptions="-Xclang -plugin-arg-clang-lazy -Xclang qt-developer"
fi
if ( test $# -gt 0 -a "$1" = "--visit-implicit-code" )
then
shift
ExtraClangOptions="-Xclang -plugin-arg-clang-lazy -Xclang visit-implicit-code"
fi
ClangLazyLib=ClangLazy@CMAKE_SHARED_LIBRARY_SUFFIX@
if ( test -f "$libdir/$ClangLazyLib" )
then
# find plugin libraries in install dir
export LD_LIBRARY_PATH=$libdir:$LD_LIBRARY_PATH
export DYLD_LIBRARY_PATH=$libdir:$DYLD_LIBRARY_PATH
elif ( test -f "$(dirname $0)/lib/$ClangLazyLib" )
then
# find plugin libraries in build dir
export LD_LIBRARY_PATH=$(dirname $0)/lib:$LD_LIBRARY_PATH
export DYLD_LIBRARY_PATH=$(dirname $0)/lib:$DYLD_LIBRARY_PATH
fi
${CLANGXX:-clang++} -Qunused-arguments -Xclang -load -Xclang $ClangLazyLib -Xclang -add-plugin -Xclang clang-lazy $ExtraClangOptions "$@"