diff -r a2e8d97c0710 -r 81b991eaf372 configs/example/se.py --- a/configs/example/se.py Fri Mar 18 15:58:49 2011 -0700 +++ b/configs/example/se.py Fri Mar 18 16:02:10 2011 -0700 @@ -87,10 +87,13 @@ for app in apps: try: - if buildEnv['TARGET_ISA'] != 'alpha': - print >>sys.stderr, "Simpoints code only works for Alpha ISA at this time" + if buildEnv['TARGET_ISA'] == 'x86': + exec("workload = %s('x86', 'linux', 'ref')" % app) + elif buildEnv['TARGET_ISA'] == 'alpha': + exec("workload = %s('alpha', 'tru64', 'ref')" % app) + else: + print >> sys.stderr, "This config file not set up for %s yet" % buildEnv['TARGET_ISA'] sys.exit(1) - exec("workload = %s('alpha', 'tru64', 'ref')" % app) multiprocesses.append(workload.makeLiveProcess()) except: print >>sys.stderr, "Unable to find workload for %s" % app