diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2005-02-13 23:03:04 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2005-02-13 23:03:04 -0500 |
commit | 57482491c5eeb3e52f2f29f5f56040445004cb43 (patch) | |
tree | 8169e014e3ab26cf3128168f6c0a625f691e8e4e /build | |
parent | b78d7c2f16dac11ed468de45a088a362605c6493 (diff) | |
download | gem5-57482491c5eeb3e52f2f29f5f56040445004cb43.tar.xz |
build mysql version if libraries exist
add dprintf on alignment faults
fix RR benchmark rcS script name
Add Dual test without rcS script
Update Monet to be closer to the real thing
Fix p4/monet configs
Add a way to read the DRIR register with at 32bit access for validation
SConscript:
build/SConstruct:
always use mysql if the libraries are installed
arch/alpha/alpha_memory.cc:
Add a DPRINTF to print alignment faults when they happen
dev/tsunami_cchip.cc:
Add a way to read the DRIR for validation.
--HG--
extra : convert_revision : 8c112c958f36b785390c46e70a889a79c6bea015
Diffstat (limited to 'build')
-rw-r--r-- | build/SConstruct | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/build/SConstruct b/build/SConstruct index 3d7db1db2..5c4ae94a1 100644 --- a/build/SConstruct +++ b/build/SConstruct @@ -101,23 +101,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 } |