summaryrefslogtreecommitdiff
path: root/build/SConstruct
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2004-08-03 22:46:03 -0700
committerSteve Reinhardt <stever@eecs.umich.edu>2004-08-03 22:46:03 -0700
commit1939370c96b48a1f635799b6017d5f5f11799353 (patch)
tree7b767bd7b9e78551339e3e85cf5784cca8c02ec3 /build/SConstruct
parente79dee27ce744458449b4aec9e39f297aa01d984 (diff)
downloadgem5-1939370c96b48a1f635799b6017d5f5f11799353.tar.xz
Move libelf/SConscript include to m5/SConscript, so elf
headers get created in build tree (under build/FOO/libelf) instead of source tree (m5/libelf). SConscript: Move libelf/SConscript include here. build/SConstruct: Get rid of libelf/SConscript include (moved to m5/SConscript). --HG-- extra : convert_revision : c0acb3bab2afa5079748b907c5917f548582099e
Diffstat (limited to 'build/SConstruct')
-rw-r--r--build/SConstruct6
1 files changed, 0 insertions, 6 deletions
diff --git a/build/SConstruct b/build/SConstruct
index d6d723c95..08eb13ea1 100644
--- a/build/SConstruct
+++ b/build/SConstruct
@@ -246,12 +246,6 @@ default_env.Append(CCFLAGS='-pipe')
default_env.Append(CCFLAGS='-fno-strict-aliasing')
default_env.Append(CCFLAGS=Split('-Wall -Wno-sign-compare -Werror -Wundef'))
-# libelf build is described in its own SConscript file. Using a
-# dictionary for exports lets us export "default_env" so the
-# SConscript will see it as "env".
-default_env.SConscript('m5/libelf/SConscript', exports={'env' : default_env})
-
-
###################################################
#
# Define build environments for selected configurations.