diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2016-01-11 05:52:20 -0500 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2016-01-11 05:52:20 -0500 |
commit | 12eb0343784f52994110df7e7fce4a0b639a6ec3 (patch) | |
tree | 12ff1c51b8051bb7e7d889eed499bee0dcd4cd1e /ext/dramsim2 | |
parent | 7661f1c2bf2b45603264076fabce2eb42373cd18 (diff) | |
download | gem5-12eb0343784f52994110df7e7fce4a0b639a6ec3.tar.xz |
scons: Enable -Wextra by default
Make best use of the compiler, and enable -Wextra as well as
-Wall. There are a few issues that had to be resolved, but they are
all trivial.
Diffstat (limited to 'ext/dramsim2')
-rw-r--r-- | ext/dramsim2/SConscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/dramsim2/SConscript b/ext/dramsim2/SConscript index f7053c976..bc4c04706 100644 --- a/ext/dramsim2/SConscript +++ b/ext/dramsim2/SConscript @@ -77,7 +77,8 @@ dramenv.Append(CCFLAGS=['-Wno-unused-value']) # If we are using clang, there are more flags to disable if main['CLANG']: - dramenv.Append(CCFLAGS=['-Wno-unused-private-field']) + dramenv.Append(CCFLAGS=['-Wno-unused-private-field', + '-Wno-tautological-undefined-compare']) # Tell DRAMSim2 to not store any data as this is already covered by # the wrapper |