summaryrefslogtreecommitdiff
path: root/scripts/check_all.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/check_all.sh')
-rwxr-xr-xscripts/check_all.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/check_all.sh b/scripts/check_all.sh
index 1a8b406..c2f749c 100755
--- a/scripts/check_all.sh
+++ b/scripts/check_all.sh
@@ -48,7 +48,11 @@ echo "Running coverage test suite..."
echo ""
echo "--- Running Windows Cross-Compilation Build ---"
-./scripts/build_win.sh
+if command -v x86_64-w64-mingw32-gcc >/dev/null 2>&1; then
+ ./scripts/build_win.sh
+else
+ echo "Skipped: mingw-w64 not found. Install with: sudo apt-get install -y mingw-w64"
+fi
echo ""
echo "All checks passed successfully."