My guess is that default_cpus is not what you wanted. You should have added a CPU_MODELS= line to build_opts/ALPHA_FS. Then again, looking at the build_opts files, most define CPU_MODELS=, so maybe everything will build. Did you test compile everything?
Nate On Tue, May 12, 2009 at 5:58 PM, Korey Sewell <[email protected]> wrote: > changeset 1c6a17f46228 in /z/repo/m5 > details: http://repo.m5sim.org/m5?cmd=changeset;node=1c6a17f46228 > description: > cpus: add InOrderCPU to default build > regressions need this so they build the model > > diffstat: > > 2 files changed, 2 insertions(+), 1 deletion(-) > build_opts/ALPHA_SE | 2 +- > src/cpu/inorder/SConsopts | 1 + > > diffs (16 lines): > > diff -r 173f58c8a718 -r 1c6a17f46228 build_opts/ALPHA_SE > --- a/build_opts/ALPHA_SE Tue May 12 20:30:40 2009 -0400 > +++ b/build_opts/ALPHA_SE Tue May 12 20:55:21 2009 -0400 > @@ -1,3 +1,3 @@ > FULL_SYSTEM = 0 > SS_COMPATIBLE_FP = 1 > -CPU_MODELS = 'AtomicSimpleCPU,TimingSimpleCPU,O3CPU' > +CPU_MODELS = 'AtomicSimpleCPU,TimingSimpleCPU,O3CPU,InOrderCPU' > diff -r 173f58c8a718 -r 1c6a17f46228 src/cpu/inorder/SConsopts > --- a/src/cpu/inorder/SConsopts Tue May 12 20:30:40 2009 -0400 > +++ b/src/cpu/inorder/SConsopts Tue May 12 20:55:21 2009 -0400 > @@ -31,3 +31,4 @@ > Import('*') > > all_cpu_list.append('InOrderCPU') > +default_cpus.append('InOrderCPU') > _______________________________________________ > m5-dev mailing list > [email protected] > http://m5sim.org/mailman/listinfo/m5-dev > > _______________________________________________ m5-dev mailing list [email protected] http://m5sim.org/mailman/listinfo/m5-dev
