diff options
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 068158a4e..3e71c1a74 100644 --- a/build/SConstruct +++ b/build/SConstruct @@ -104,15 +104,6 @@ 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') @@ -123,8 +114,6 @@ def EfenceOpt(env): # Configuration options map. options_map = { - 'MEASURE' : MeasureOpt, - 'MYSQL' : MySqlOpt, 'NO_FAST_ALLOC' : NoFastAllocOpt, 'EFENCE' : EfenceOpt } |