Config: call to setWorkCountOptions() for all ISAs
This commit is contained in:
parent
51c23e601e
commit
abb85a68f4
1 changed files with 1 additions and 2 deletions
|
@ -100,12 +100,10 @@ elif buildEnv['TARGET_ISA'] == "sparc":
|
|||
test_sys = makeSparcSystem(test_mem_mode, bm[0])
|
||||
elif buildEnv['TARGET_ISA'] == "x86":
|
||||
test_sys = makeLinuxX86System(test_mem_mode, options.num_cpus, bm[0])
|
||||
Simulation.setWorkCountOptions(test_sys, options)
|
||||
elif buildEnv['TARGET_ISA'] == "arm":
|
||||
test_sys = makeArmSystem(test_mem_mode,
|
||||
options.machine_type, bm[0],
|
||||
bare_metal=options.bare_metal)
|
||||
Simulation.setWorkCountOptions(test_sys, options)
|
||||
else:
|
||||
fatal("Incapable of building %s full system!", buildEnv['TARGET_ISA'])
|
||||
|
||||
|
@ -183,4 +181,5 @@ if options.timesync:
|
|||
if options.frame_capture:
|
||||
VncServer.frame_capture = True
|
||||
|
||||
Simulation.setWorkCountOptions(test_sys, options)
|
||||
Simulation.run(options, root, test_sys, FutureClass)
|
||||
|
|
Loading…
Reference in a new issue