1571
|
1 #!/bin/bash
|
|
2
|
|
3 set -ex
|
|
4
|
|
5 CPPCHECK=cppcheck
|
|
6
|
|
7 if [ $# -ge 1 ]; then
|
|
8 CPPCHECK=$1
|
|
9 fi
|
|
10
|
|
11 cat <<EOF > /tmp/cppcheck-suppressions.txt
|
1573
|
12 stlFindInsert:../../Applications/Samples/WebAssembly/SingleFrameViewer/SingleFrameViewerApplication.h
|
|
13 stlFindInsert:../../Applications/StoneWebViewer/WebAssembly/StoneWebViewer.cpp:658
|
1571
|
14 unpreciseMathCall:../../OrthancStone/Sources/Scene2D/Internals/CairoFloatTextureRenderer.cpp
|
|
15 unpreciseMathCall:../../OrthancStone/Sources/Scene2D/LookupTableTextureSceneLayer.cpp
|
1573
|
16 unreadVariable:../../OrthancStone/Sources/Viewport/SdlViewport.cpp:135
|
|
17 unreadVariable:../../OrthancStone/Sources/Viewport/SdlViewport.cpp:193
|
1571
|
18 unusedFunction
|
|
19 useInitializationList:../../OrthancStone/Sources/OpenGL/OpenGLProgram.cpp:36
|
|
20 EOF
|
|
21
|
|
22 ${CPPCHECK} --enable=all --quiet --std=c++11 \
|
|
23 --suppressions-list=/tmp/cppcheck-suppressions.txt \
|
1573
|
24 -DHAS_ORTHANC_EXCEPTION=1 \
|
1571
|
25 -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=1 \
|
|
26 -DORTHANC_ENABLE_BASE64=1 \
|
|
27 -DORTHANC_ENABLE_CIVETWEB=0 \
|
|
28 -DORTHANC_ENABLE_CURL=1 \
|
|
29 -DORTHANC_ENABLE_DCMTK=1 \
|
|
30 -DORTHANC_ENABLE_DCMTK_JPEG=1 \
|
|
31 -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 \
|
|
32 -DORTHANC_ENABLE_GLEW=1 \
|
|
33 -DORTHANC_ENABLE_JPEG=1 \
|
|
34 -DORTHANC_ENABLE_LOCALE=1 \
|
|
35 -DORTHANC_ENABLE_LOGGING=1 \
|
|
36 -DORTHANC_ENABLE_LOGGING_STDIO=1 \
|
|
37 -DORTHANC_ENABLE_MD5=1 \
|
|
38 -DORTHANC_ENABLE_MONGOOSE=0 \
|
|
39 -DORTHANC_ENABLE_OPENGL=1 \
|
|
40 -DORTHANC_ENABLE_PKCS11=0 \
|
|
41 -DORTHANC_ENABLE_PNG=1 \
|
|
42 -DORTHANC_ENABLE_PUGIXML=0 \
|
|
43 -DORTHANC_ENABLE_SDL=1 \
|
|
44 -DORTHANC_ENABLE_SSL=1 \
|
|
45 -DORTHANC_ENABLE_THREADS=1 \
|
|
46 -DORTHANC_ENABLE_WASM=1 \
|
|
47 -DORTHANC_ENABLE_ZLIB=1 \
|
|
48 -DORTHANC_SANDBOXED=0 \
|
|
49 -D__GNUC__ \
|
|
50 -D__cplusplus=201103 \
|
|
51 -D__linux__ \
|
1573
|
52 -DEM_ASM \
|
1571
|
53 -UNDEBUG \
|
|
54 -I/home/jodogne/Subversion/orthanc/OrthancFramework/Sources \
|
|
55 \
|
|
56 ../../OrthancStone/Sources \
|
1573
|
57 ../../Applications/Samples \
|
|
58 ../../Applications/StoneWebViewer \
|
1571
|
59 \
|
|
60 2>&1
|