Chen Zou has uploaded this change for review. ( https://gem5-review.googlesource.com/7021

Change subject: Fill in the cpu.isa field since no default are provided now
......................................................................

Fill in the cpu.isa field since no default are provided now

Change-Id: I5f337b9969820bd74ed67e576e2d1a8e4666ecdb
---
M configs/example/etrace_replay.py
1 file changed, 5 insertions(+), 0 deletions(-)



diff --git a/configs/example/etrace_replay.py b/configs/example/etrace_replay.py
index 385a2d1..f8586d6 100644
--- a/configs/example/etrace_replay.py
+++ b/configs/example/etrace_replay.py
@@ -104,6 +104,11 @@
 for cpu in system.cpu:
     cpu.clk_domain = system.cpu_clk_domain

+# BaseCPU no longer has default values for the BaseCPU.isa
+# createThreads() is needed to fill in the cpu.isa
+for cpu in system.cpu:
+    cpu.createThreads()
+
 # Assign input trace files to the Trace CPU
 system.cpu.instTraceFile=options.inst_trace_file
 system.cpu.dataTraceFile=options.data_trace_file

--
To view, visit https://gem5-review.googlesource.com/7021
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I5f337b9969820bd74ed67e576e2d1a8e4666ecdb
Gerrit-Change-Number: 7021
Gerrit-PatchSet: 1
Gerrit-Owner: Chen Zou <[email protected]>
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to