diff options
author | Marc Orr <marc.orr@gmail.com> | 2012-03-06 19:07:41 -0800 |
---|---|---|
committer | Marc Orr <marc.orr@gmail.com> | 2012-03-06 19:07:41 -0800 |
commit | eb43883bef3960a9325f26e1925ca8325330173c (patch) | |
tree | 0b8bdb70184eb51392c88ca561f5482725d62999 /SConstruct | |
parent | 75681d3c1b6fbb5b9ff0fe63862bdbe31ae5dec6 (diff) | |
download | gem5-eb43883bef3960a9325f26e1925ca8325330173c.tar.xz |
build scripts: Made minor modifications to reduce build overhead time.
1. --implicit-cache behavior is default.
2. makeEnv in src/SConscript is conditionally called.
3. decider set to MD5-timestamp
4. NO_HTML build option changed to SLICC_HTML (defaults to False)
Diffstat (limited to 'SConstruct')
-rwxr-xr-x | SConstruct | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index f5a46286c..19bc6e41b 100755 --- a/SConstruct +++ b/SConstruct @@ -192,6 +192,8 @@ for key,val in os.environ.iteritems(): use_env[key] = val main = Environment(ENV=use_env) +main.Decider('MD5-timestamp') +main.SetOption('implicit_cache', 1) main.root = Dir(".") # The current directory (where this file lives). main.srcdir = Dir("src") # The source directory |