undoing change per nates request
authorAli Saidi <saidi@eecs.umich.edu>
Tue, 15 Feb 2005 01:47:05 +0000 (20:47 -0500)
committerAli Saidi <saidi@eecs.umich.edu>
Tue, 15 Feb 2005 01:47:05 +0000 (20:47 -0500)
--HG--
extra : convert_revision : c5c2fd88dfd8d893da51c2b80907260ec14a7593

SConscript
build/SConstruct
util/pbs/job.py

index 8f789913482e8590a47ea2a48209b7f5e88af7e4..19f84f91311d6661a0024d0fd98b9c9ac2da1d66 100644 (file)
@@ -28,7 +28,6 @@
 
 import os
 import sys
-from os.path import isdir
 
 # This file defines how to build a particular configuration of M5
 # based on variable settings in the 'env' build environment.
@@ -337,16 +336,18 @@ else:
 
 extra_libraries = []
 env.Append(LIBS=['z'])
-if isdir('/usr/lib64/mysql') or isdir('/usr/lib/mysql') or \
-   isdir('/usr/local/lib/mysql'):
-    env.Append(LIBPATH=['/usr/lib64/mysql', '/usr/local/lib/mysql/',
-                        '/usr/lib/mysql'])
-    env.Append(CPPPATH=['/usr/local/include/mysql', '/usr/include/mysql'])
+if env['USE_MYSQL']:
     sources += mysql_sources
     env.Append(CPPDEFINES = 'USE_MYSQL')
     env.Append(CPPDEFINES = 'STATS_BINNING')
+    env.Append(CPPPATH=['/usr/local/include/mysql', '/usr/include/mysql'])
+    if os.path.isdir('/usr/lib64'):
+        env.Append(LIBPATH=['/usr/lib64/mysql'])
+    else:
+        env.Append(LIBPATH=['/usr/lib/mysql/'])
     env.Append(LIBS=['mysqlclient'])
 
+
 ###################################################
 #
 # Special build rules.
index 5c4ae94a1f117eb9aee5fb34f4d393f1063e808c..3d7db1db2a73f24a582c92b251fc9718dd9282da 100644 (file)
@@ -101,12 +101,23 @@ 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
     }
 
index 7c8d4bc1632b292abe2c0299e5f45573b8373892..5eed0cd758eb8e3b34e88bd68f089694878d4767 100755 (executable)
@@ -134,7 +134,7 @@ if __name__ == '__main__':
 
     os.symlink(joinpath(jobdir, 'output'), 'status.out')
 
-    args = [ joinpath(basedir, 'm5'), '-d', '%s' % jobdir, joinpath(basedir, 'run.mpy') ]
+    args = [ joinpath(basedir, 'm5'), joinpath(basedir, 'run.mpy') ]
     if not len(args):
         sys.exit("no arguments")