summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2005-03-28 00:41:28 -0500
committerNathan Binkert <binkertn@umich.edu>2005-03-28 00:41:28 -0500
commita86b95cb182b435bda5d76197cd9f32ba6db83c2 (patch)
tree45bb5315f0c6a5a9eefe20627edb3d0a58ae8db3 /build
parent1cd15e8e4addf995fb0683d76ec1214a832b49b5 (diff)
downloadgem5-a86b95cb182b435bda5d76197cd9f32ba6db83c2.tar.xz
If we find the mysql libraries on the machine, just compile
with mysql and remove the special compile type. SConscript: If we find the mysql libraries on the machine, just compile with mysql. build/SConstruct: we always use mysql, and we got rid of the FS_MEASURE --HG-- extra : convert_revision : a7c4277c890e1b6390ef06288114c9bdde11b178
Diffstat (limited to 'build')
-rw-r--r--build/SConstruct11
1 files changed, 0 insertions, 11 deletions
diff --git a/build/SConstruct b/build/SConstruct
index e33373243..28cb77762 100644
--- a/build/SConstruct
+++ b/build/SConstruct
@@ -104,23 +104,12 @@ configs_map = {
'KERNEL' : KernelConfig
}
-# Enable detailed full-system binning.
-def MeasureOpt(env):
- env.Replace(USE_MYSQL = True)
- env.Append(CPPDEFINES = 'FS_MEASURE')
-
-# Enable MySql database output for stats.
-def MySqlOpt(env):
- env.Replace(USE_MYSQL = True)
-
# Disable FastAlloc object allocation.
def NoFastAllocOpt(env):
env.Append(CPPDEFINES = 'NO_FAST_ALLOC')
# Configuration options map.
options_map = {
- 'MEASURE' : MeasureOpt,
- 'MYSQL' : MySqlOpt,
'NO_FAST_ALLOC' : NoFastAllocOpt
}