summaryrefslogtreecommitdiff
path: root/scripts/gcc-wrapper.py
AgeCommit message (Collapse)Author
2016-03-23scripts: gcc-wrapper: allow a few forbidden warningsDavid Keitel
Bypass a few forbidden warnings to allow msm_defconfig to build. Signed-off-by: David Keitel <dkeitel@codeaurora.org>
2016-03-23scripts: Call out python2 explicitlyDavid Brown
Many systems these days have both python2 and python3 installed. The unversioned executable `python` may point to either version. Per https://www.python.org/dev/peps/pep-0394/ , scripts that need Python 2 should explicitly call this out in the shebang line. These build scripts are both specific to python 2, so call this out in the shebang line. Change-Id: I11f70c341e484254dc1679db65c2ed5ac61e510f Signed-off-by: David Brown <davidb@codeaurora.org>
2016-03-23scripts: gcc-wrapper: bypass forbidden warnings with gcc5Se Wang (Patrick) Oh
Bypass forbidden warnings in code coming from upstream in order to avoid compilation errors with gcc5. sysrq.c:956:33: warning: array subscript is above array bounds hci_sock.c:980:8: warning: passing argument 2 of 'hci_test_bit' discards 'const' qualifier from pointer target type Change-Id: I5056078112fdc457c424c0f49c4dca70c6b97c29 Signed-off-by: Se Wang (Patrick) Oh <sewango@codeaurora.org>
2016-03-23scripts: gcc-wrapper: Allow upstream forbidden warningsIan Maund
Bypass forbidden warnings in code coming from upstream in order to avoid compilation errors for msm-3.18 and remove bypassed warnings from msm-3.14. Signed-off-by: Ian Maund <imaund@codeaurora.org>
2016-03-23scripts: gcc-wrapper: Use wrapper to check compiler warningsDavid Brown
Rather than telling gcc to make warnings as errors, and then hunting down make rules to disable this, leave them as warnings, but invoke gcc through a wrapper that checks the warnings against a whitelist. The initial whitelist comes from the warnings in the current build, all of which have been allowed through Make overrides. Change-Id: I5e0b199f9803d072537eeb77cb38d91cc06e951b Signed-off-by: David Brown <davidb@codeaurora.org> [mattw@codeaurora.org: update allowed_warnings for msm-3.14] Signed-off-by: Matt Wagantall <mattw@codeaurora.org>