projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
02abca6
)
Only bother with the device SConscript if you're in FULL_SYSTEM
author
Gabe Black
<gblack@eecs.umich.edu>
Tue, 7 Nov 2006 00:55:42 +0000
(19:55 -0500)
committer
Gabe Black
<gblack@eecs.umich.edu>
Tue, 7 Nov 2006 00:55:42 +0000
(19:55 -0500)
--HG--
extra : convert_revision :
ac52f548afb98dd0437e7d7c2600ff9b8ebfd1fa
src/SConscript
patch
|
blob
|
history
diff --git
a/src/SConscript
b/src/SConscript
index b383f58d69502076211ed993aa5785e42af0e6c7..58081751dd4d77bbe20f934b96e763ec60da2ded 100644
(file)
--- a/
src/SConscript
+++ b/
src/SConscript
@@
-294,8
+294,9
@@
arch_sources = SConscript(os.path.join('arch', 'SConscript'), exports = 'env')
cpu_sources = SConscript(os.path.join('cpu', 'SConscript'), exports = 'env')
-dev_sources = SConscript(os.path.join('dev', 'SConscript'), exports = 'env')
-full_system_sources += dev_sources
+if env['FULL_SYSTEM']:
+ dev_sources = SConscript(os.path.join('dev', 'SConscript'), exports = 'env')
+ full_system_sources += dev_sources
# This is outside of cpu/SConscript since the source directory isn't
# underneath 'cpu'.