Gitweb links:
...log
http://git.netsurf-browser.org/buildsystem.git/shortlog/ba62b2b494f7ec7fe...
...commit
http://git.netsurf-browser.org/buildsystem.git/commit/ba62b2b494f7ec7fef9...
...tree
http://git.netsurf-browser.org/buildsystem.git/tree/ba62b2b494f7ec7fef9d0...
The branch, master has been updated
via ba62b2b494f7ec7fef9d0936cbef7bdeaa80e2fc (commit)
from cdde8cbaed88f06c373f6d5add7273fd97e77d21 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/buildsystem.git/commit/?id=ba62b2b494f7ec7...
commit ba62b2b494f7ec7fef9d0936cbef7bdeaa80e2fc
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
Supress warnings as errors in static analysis builds
diff --git a/citools/jenkins-build.sh b/citools/jenkins-build.sh
index e2cc6a2..7be5d46 100755
--- a/citools/jenkins-build.sh
+++ b/citools/jenkins-build.sh
@@ -161,7 +161,8 @@ elif [ "x${HOST}" = "x${TARGET_STATIC}" ]; then
# static build
rm -rf clangScanBuildReports
- scan-build -o clangScanBuildReports -v --use-cc clang --use-analyzer=/usr/bin/clang
${MAKE} Q= VARIANT=${VARIANT}
+ # build with static analysis without warnings causing errors
+ CFLAGS=-Wno-error scan-build -o clangScanBuildReports -v -v --use-cc clang
--use-analyzer=/usr/bin/clang ${MAKE} Q= VARIANT=${VARIANT}
# clean up after
${MAKE} Q= clean HOST=${HOST} VARIANT=${VARIANT}
-----------------------------------------------------------------------
Summary of changes:
citools/jenkins-build.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/citools/jenkins-build.sh b/citools/jenkins-build.sh
index e2cc6a2..7be5d46 100755
--- a/citools/jenkins-build.sh
+++ b/citools/jenkins-build.sh
@@ -161,7 +161,8 @@ elif [ "x${HOST}" = "x${TARGET_STATIC}" ]; then
# static build
rm -rf clangScanBuildReports
- scan-build -o clangScanBuildReports -v --use-cc clang --use-analyzer=/usr/bin/clang
${MAKE} Q= VARIANT=${VARIANT}
+ # build with static analysis without warnings causing errors
+ CFLAGS=-Wno-error scan-build -o clangScanBuildReports -v -v --use-cc clang
--use-analyzer=/usr/bin/clang ${MAKE} Q= VARIANT=${VARIANT}
# clean up after
${MAKE} Q= clean HOST=${HOST} VARIANT=${VARIANT}
--
NetSurf Project build system