diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2004-08-07 14:23:01 -0700 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2004-08-07 14:23:01 -0700 |
commit | 2c5356835d429c95610b9f125abc6aaddcb48395 (patch) | |
tree | fa4c87db4fd2ce912121c8d12a123d76d73b9b41 /SConscript | |
parent | 2eed802774426484d061fe94b1f653f4ebbd2175 (diff) | |
download | gem5-2c5356835d429c95610b9f125abc6aaddcb48395.tar.xz |
Split libelf/SConscript into two parts, one for the
shared build and one for the per-config header file
copying.
SConscript:
Just include libelf/SConscript-local.
build/SConstruct:
Include libelf/SConscript-global.
--HG--
extra : convert_revision : 0a4ae8f1514819f99fec101b898c19dabd4d59bd
Diffstat (limited to 'SConscript')
-rw-r--r-- | SConscript | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/SConscript b/SConscript index f6875a630..10722007a 100644 --- a/SConscript +++ b/SConscript @@ -420,7 +420,9 @@ env.Command('targetarch', None, link_targetarch) # libelf build is described in its own SConscript file. -SConscript('libelf/SConscript', exports = 'env', duplicate=0) +# SConscript-local is the per-config build, which just copies some +# header files into a place where they can be found. +SConscript('libelf/SConscript-local', exports = 'env', duplicate=0) SConscript('sim/pyconfig/SConscript', exports = ['env', 'obj_desc_files'], duplicate=0) |