changeset d322dd2e2b2d in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=d322dd2e2b2d
description:
        config: allow ruby to be used with Minor CPU

diffstat:

 configs/example/se.py |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (14 lines):

diff -r 3c4bda5a2f66 -r d322dd2e2b2d configs/example/se.py
--- a/configs/example/se.py     Sat Sep 05 09:35:39 2015 -0500
+++ b/configs/example/se.py     Sun Sep 06 23:11:11 2015 -0500
@@ -241,8 +241,8 @@
     system.cpu[i].createThreads()
 
 if options.ruby:
-    if not (options.cpu_type == "detailed" or options.cpu_type == "timing"):
-        print >> sys.stderr, "Ruby requires TimingSimpleCPU or O3CPU!!"
+    if options.cpu_type == "atomic" or options.cpu_type == "AtomicSimpleCPU":
+        print >> sys.stderr, "Ruby does not work with atomic cpu!!"
         sys.exit(1)
 
     Ruby.create_system(options, False, system)
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to