summaryrefslogtreecommitdiff
path: root/util/style
diff options
context:
space:
mode:
authorAndreas Sandberg <andreas.sandberg@arm.com>2017-02-07 15:28:33 +0000
committerAndreas Sandberg <andreas.sandberg@arm.com>2017-02-07 15:28:33 +0000
commit653b4657e67f24339abd18a154a57ca5d578b4b9 (patch)
treec5ed13b206407654e7205ec4433cbd58847e682a /util/style
parent227bdde922e919771e8702fc422461df4f1d317d (diff)
downloadgem5-653b4657e67f24339abd18a154a57ca5d578b4b9.tar.xz
style: Force Python.h to be included before main header
Python's header files set various compiler macros (e.g., _XOPEN_SOURCE) unconditionally. This triggers preprocessor warnings that end up being treated as errors. The Python integration manual [1] strongly recommends that Python.h is included before any system header. The style guide used to mandate that Python.h is included first in any file that needs it. This requirement was changed to always include a source file's main header first, which ended up triggering these errors. This change updates the style checker to always include Python.h before the main header file. [1] https://docs.python.org/2/extending/extending.html Change-Id: Id6a4f7fc64a336a8fd26691a0ca682abeb1d1579 Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com> Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com> Reviewed-by: Jason Lowe-Power <jason@lowepower.com> Reviewed-by: Pierre-Yves PĂ©neau <pierre-yves.peneau@lirmm.fr>
Diffstat (limited to 'util/style')
-rw-r--r--util/style/sort_includes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/style/sort_includes.py b/util/style/sort_includes.py
index 334d9e29e..a35b08468 100644
--- a/util/style/sort_includes.py
+++ b/util/style/sort_includes.py
@@ -169,8 +169,8 @@ class SortIncludes(object):
)
block_order = (
- ('main', ),
('python', ),
+ ('main', ),
('c', ),
('stl', ),
('cc', ),