diff options
author | Mitch Hayenga <mitch.hayenga@arm.com> | 2014-10-09 17:51:58 -0400 |
---|---|---|
committer | Mitch Hayenga <mitch.hayenga@arm.com> | 2014-10-09 17:51:58 -0400 |
commit | 06f4b521aa3ab32fbde45c97568bd84d218921d6 (patch) | |
tree | a7e093140729334fcfdc707f75171899f0d54d5f /src/cpu/o3 | |
parent | 3f6dc3c5718198bcfbb5842bf5f07e99fc8b3cbe (diff) | |
download | gem5-06f4b521aa3ab32fbde45c97568bd84d218921d6.tar.xz |
cpu: Remove Ozone CPU from the source tree
The Ozone CPU is now very much out of date and completely
non-functional, with no one actively working on restoring it. It is a
source of confusion for new users who attempt to use it before
realizing its current state. RIP
Diffstat (limited to 'src/cpu/o3')
-rwxr-xr-x | src/cpu/o3/SConscript | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/cpu/o3/SConscript b/src/cpu/o3/SConscript index b8f14cc25..bd028e640 100755 --- a/src/cpu/o3/SConscript +++ b/src/cpu/o3/SConscript @@ -32,11 +32,6 @@ import sys Import('*') -if 'O3CPU' in env['CPU_MODELS'] or 'OzoneCPU' in env['CPU_MODELS']: - DebugFlag('CommitRate') - DebugFlag('IEW') - DebugFlag('IQ') - if 'O3CPU' in env['CPU_MODELS']: SimObject('FUPool.py') SimObject('FuncUnitConfig.py') @@ -64,6 +59,9 @@ if 'O3CPU' in env['CPU_MODELS']: Source('store_set.cc') Source('thread_context.cc') + DebugFlag('CommitRate') + DebugFlag('IEW') + DebugFlag('IQ') DebugFlag('LSQ') DebugFlag('LSQUnit') DebugFlag('MemDepUnit') |