diff options
author | Gabe Black <gabeblack@google.com> | 2017-11-20 18:26:29 -0800 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2017-11-27 22:10:21 +0000 |
commit | 08d60882d72e50498536b7d02f4b8838db8d81c4 (patch) | |
tree | a6670d8ffeb9c417e12af9ec7529c89e4b31b0e6 /src | |
parent | 316ef3d9be995c3e625266386afeeb037a255180 (diff) | |
download | gem5-08d60882d72e50498536b7d02f4b8838db8d81c4.tar.xz |
scons: Get rid of a flag which makes Werror optional.
This flag wasn't being used. Also move the Werror code to the
SConstruct now that it's being applied universally.
Change-Id: I18b00d4b41bc1add9271ca299c020c14970a6926
Reviewed-on: https://gem5-review.googlesource.com/5982
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src')
-rwxr-xr-x | src/SConscript | 29 |
1 files changed, 7 insertions, 22 deletions
diff --git a/src/SConscript b/src/SConscript index a40955b68..34bbcc02c 100755 --- a/src/SConscript +++ b/src/SConscript @@ -172,11 +172,10 @@ class Source(SourceFile): self.tags.add(Source._current_group_tag) '''Add a c/c++ source file to the build''' - def __init__(self, source, tags=None, add_tags=None, Werror=True): + def __init__(self, source, tags=None, add_tags=None): '''specify the source file, and any tags''' super(Source, self).__init__(source, tags, add_tags) self._add_link_group_tag() - self.Werror = Werror class PySource(SourceFile): '''Add a python source file to the named package''' @@ -952,31 +951,17 @@ def makeEnv(env, label, objsfx, strip=False, disable_partial=False, **kwargs): new_env.Label = label new_env.Append(**kwargs) - werror_env = new_env.Clone() - # Treat warnings as errors but white list some warnings that we - # want to allow (e.g., deprecation warnings). - werror_env.Append(CCFLAGS=['-Werror', - '-Wno-error=deprecated-declarations', - '-Wno-error=deprecated', - ]) - - def make_obj(source, static, extra_deps = None): - '''This function adds the specified source to the correct - build environment, and returns the corresponding SCons Object - nodes''' - - if source.Werror: - env = werror_env - else: - env = new_env + def make_obj(source, static, extra_deps=None): + '''This function creates a scons node of the requested type, and sets + up any additional dependencies.''' if static: - obj = env.StaticObject(source.tnode) + obj = new_env.StaticObject(source.tnode) else: - obj = env.SharedObject(source.tnode) + obj = new_env.SharedObject(source.tnode) if extra_deps: - env.Depends(obj, extra_deps) + new_env.Depends(obj, extra_deps) return obj |