summaryrefslogtreecommitdiff
path: root/tools/release/bjam_warnings.bat
blob: b45f4b785b36961dd996172643b0595e21107600 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@echo off
rem  Scan bjam/b2 log file for compile warnings

rem  Copyright 2011 Beman Dawes

rem  Distributed under the Boost Software License, Version 1.0.
rem  See http://www.boost.org/LICENSE_1_0.txt

if not %1$==$ goto usage_ok
echo Usage: bjam_warnings log-path
goto done

:usage_ok

grep -i "warning" %1 | grep -E "boost|libs" | sort | uniq

:done