changeset 69bd8491175a in /z/repo/gem5 details: http://repo.gem5.org/gem5?cmd=changeset;node=69bd8491175a description: config: add atomic cpu to X86_MESI_CMP_directory build options There is some problem with the way listing cpu options right now. Since Ruby uses the options variable, this variable has to be created in the config file that runs the fs test for x86 and mesi cmp directory combination. While creating the variable, some error is occurs due to the way list of cpu types is now created. Hence, we need to compile all the cpu models.
diffstat: build_opts/X86_MESI_CMP_directory | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diffs (8 lines): diff -r 3db869bbcdd1 -r 69bd8491175a build_opts/X86_MESI_CMP_directory --- a/build_opts/X86_MESI_CMP_directory Sat Jun 08 10:28:33 2013 -0400 +++ b/build_opts/X86_MESI_CMP_directory Sat Jun 08 21:57:02 2013 -0500 @@ -1,3 +1,3 @@ TARGET_ISA = 'x86' -CPU_MODELS = 'TimingSimpleCPU,O3CPU' +CPU_MODELS = 'TimingSimpleCPU,O3CPU,AtomicSimpleCPU' PROTOCOL = 'MESI_CMP_directory' _______________________________________________ gem5-dev mailing list [email protected] http://m5sim.org/mailman/listinfo/gem5-dev
