summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2006-11-09 08:43:35 -0800
committerNathan Binkert <binkertn@umich.edu>2006-11-09 08:43:35 -0800
commitf4aa4e43c41fa688abbee9dfa5b2a35a44b2dcf5 (patch)
tree3328ac8ef982d30d367b6af6e6ed46883c3c306b /SConstruct
parent081dd9e600efe1827351668ba6f231cd8c17499d (diff)
downloadgem5-f4aa4e43c41fa688abbee9dfa5b2a35a44b2dcf5.tar.xz
Factor out all of the encumbered stuff into separate SConscript
files so the directories can easily be deleted. Remove the FullCPU from the ALL_CPU_LIST and only add it if it exists. --HG-- extra : convert_revision : b16f56bb92a0063803c5099732dc289fe4363768
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct6
1 files changed, 4 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index d047f99d3..35f88e04c 100644
--- a/SConstruct
+++ b/SConstruct
@@ -320,8 +320,10 @@ env['ALL_ISA_LIST'] = ['alpha', 'sparc', 'mips']
# Define the universe of supported CPU models
env['ALL_CPU_LIST'] = ['AtomicSimpleCPU', 'TimingSimpleCPU',
- 'FullCPU', 'O3CPU',
- 'OzoneCPU']
+ 'O3CPU', 'OzoneCPU']
+
+if os.path.isdir(os.path.join(SRCDIR, 'src/encumbered/cpu/full')):
+ env['ALL_CPU_LIST'] += ['FullCPU']
# Sticky options get saved in the options file so they persist from
# one invocation to the next (unless overridden, in which case the new