blob: e3452e2256928972ad55c84679bf8eec0fbf65cc [file] [log] [blame]
hwg6461fc62015-03-04 10:46:28 +08001#! /usr/bin/env python
2# -*- coding: utf-8 -*-
3
4# Copyright (c) 2011-2012, The Linux Foundation. All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are met:
8# * Redistributions of source code must retain the above copyright
9# notice, this list of conditions and the following disclaimer.
10# * Redistributions in binary form must reproduce the above copyright
11# notice, this list of conditions and the following disclaimer in the
12# documentation and/or other materials provided with the distribution.
13# * Neither the name of The Linux Foundation nor
14# the names of its contributors may be used to endorse or promote
15# products derived from this software without specific prior written
16# permission.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20# IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21# NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
22# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
25# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
30# Invoke gcc, looking for warnings, and causing a failure if there are
31# non-whitelisted warnings.
32
33import errno
34import re
35import os
36import sys
37import subprocess
38
39# Note that gcc uses unicode, which may depend on the locale. TODO:
40# force LANG to be set to en_US.UTF-8 to get consistent warnings.
41
42allowed_warnings = set([
43 "return_address.c:63",
44 "hid-appleir.c:347",
45 "hid-magicmouse.c:580",
46 "hid-ntrig.c:1026",
47 "core.c:1334",
48 "menu.c:129",
49 "bus.c:318", # FIXME
50 "atags_to_fdt.c:96",
Huang, Taobe3d5622015-05-04 19:00:03 +080051 "compat_binfmt_elf.c:58",
hwg6461fc62015-03-04 10:46:28 +080052 ])
53
54# Capture the name of the object file, can find it.
55ofile = None
56
57warning_re = re.compile(r'''(.*/|)([^/]+\.[a-z]+:\d+):(\d+:)? warning:''')
58def interpret_warning(line):
59 """Decode the message from gcc. The messages we care about have a filename, and a warning"""
60 line = line.rstrip('\n')
61 m = warning_re.match(line)
62 if m and m.group(2) not in allowed_warnings:
63 print "error, forbidden warning:", m.group(2)
64
65 # If there is a warning, remove any object if it exists.
66 if ofile:
67 try:
68 os.remove(ofile)
69 except OSError:
70 pass
71 sys.exit(1)
72
73def run_gcc():
74 args = sys.argv[1:]
75 # Look for -o
76 try:
77 i = args.index('-o')
78 global ofile
79 ofile = args[i+1]
80 except (ValueError, IndexError):
81 pass
82
83 compiler = sys.argv[0]
84
85 try:
86 proc = subprocess.Popen(args, stderr=subprocess.PIPE)
87 for line in proc.stderr:
88 print line,
89 interpret_warning(line)
90
91 result = proc.wait()
92 except OSError as e:
93 result = e.errno
94 if result == errno.ENOENT:
95 print args[0] + ':',e.strerror
96 print 'Is your PATH set correctly?'
97 else:
98 print ' '.join(args), str(e)
99
100 return result
101
102if __name__ == '__main__':
103 status = run_gcc()
104 sys.exit(status)