summaryrefslogtreecommitdiff
path: root/build-scripts
diff options
context:
space:
mode:
authorRyan C. Gordon <icculus@icculus.org>2020-05-19 11:38:18 -0400
committerRyan C. Gordon <icculus@icculus.org>2020-05-19 11:38:18 -0400
commitd2d1088e019851ddd35ed73ba7de973695c2cd46 (patch)
treec7af36eaadc1411b14c611a14f0e443e39753b54 /build-scripts
parentdc0f1fda766120af482a81574890bd9d27f462d3 (diff)
downloadsdl-d2d1088e019851ddd35ed73ba7de973695c2cd46.tar.gz
checker-buildbot.bat: Removed. This is clearly not going to work like this.
Diffstat (limited to 'build-scripts')
-rw-r--r--build-scripts/checker-buildbot.bat36
1 files changed, 0 insertions, 36 deletions
diff --git a/build-scripts/checker-buildbot.bat b/build-scripts/checker-buildbot.bat
deleted file mode 100644
index ab6b2a4c5..000000000
--- a/build-scripts/checker-buildbot.bat
+++ /dev/null
@@ -1,36 +0,0 @@
-rem This is checker-buildbot.sh, simplified into a Windows .bat file
-rem We assume a lot of non-standard Windows stuff is in your PATH:
-rem cmake, ninja, clang, perl...
-
-erase /q /f /s %1 checker-buildbot analysis
-mkdir checker-buildbot
-cd checker-buildbot
-
-# We turn off deprecated declarations, because we don't care about these warnings during static analysis.
-# The -Wno-liblto is new since our checker-279 upgrade, I think; checker otherwise warns "libLTO.dylib relative to clang installed dir not found"
-
-scan-build -o analysis cmake -G Ninja -Wno-dev -DSDL_STATIC=OFF -DCMAKE_BUILD_TYPE=Debug -DASSERTIONS=enabled -DCMAKE_C_FLAGS="-Wno-deprecated-declarations" -DCMAKE_SHARED_LINKER_FLAGS="-Wno-liblto" ..
-
-erase /q /f /s analysis
-scan-build -o analysis ninja
-
-for /F %%i in ('dir /b /a "analysis\*"') do (
- goto packageit
-)
-
-mkdir analysis\zarro
-echo '<html><head><title>Zarro boogs</title></head><body>Static analysis: no issues to report.</body></html>' >analysis\zarro\index.html
-
-packageit:
-move analysis\* ..\analysis
-rmdir analysis # Make sure this is empty.
-cd ..
-
-move analysis %1
-
-erase /q /f /s checker-buildbot
-
-echo "Done"
-
-rem end of checker-buildbot.bat ...
-