summaryrefslogtreecommitdiff
path: root/SConscript
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-03-01 05:21:16 -0500
committerGabe Black <gblack@eecs.umich.edu>2006-03-01 05:21:16 -0500
commit1cfc27742448ab0e364d2f7ffc7460d90714a6d2 (patch)
tree95e177d2fb6756835bf4916c6c5b951587828acc /SConscript
parentd21e037fb8ad69857d3d134eb4e07cf360446736 (diff)
downloadgem5-1cfc27742448ab0e364d2f7ffc7460d90714a6d2.tar.xz
Removed the targetarch code.
--HG-- extra : convert_revision : ab0c8ed2e8d7359b353f34b443e84094ca40c5e6
Diffstat (limited to 'SConscript')
-rw-r--r--SConscript23
1 files changed, 0 insertions, 23 deletions
diff --git a/SConscript b/SConscript
index 540876699..51836b0be 100644
--- a/SConscript
+++ b/SConscript
@@ -300,29 +300,6 @@ syscall_emulation_sources = Split('''
sim/syscall_emul.cc
''')
-# The following stuff (targetarch code and global define of THE_ISA)
-# are legacy things that assume we're only compiling one ISA at a
-# time. These will have to go away if we want to build a binary that
-# supports multiple ISAs.
-
-#targetarch_files = Split('''
-# alpha_linux_process.hh
-# alpha_memory.hh
-# alpha_tru64_process.hh
-# aout_machdep.h
-# arguments.hh
-# ecoff_machdep.h
-# ev5.hh
-# faults.hh
-# stacktrace.hh
-# vtophys.hh
-# ''')
-
-# Set up bridging headers to the architecture specific versions
-#for f in targetarch_files:
-# env.Command('targetarch/' + f, 'arch/%s/%s' % (env['TARGET_ISA'], f),
-# '''echo '#include "arch/%s/%s"' > $TARGET''' % (env['TARGET_ISA'], f))
-
# Add a flag defining what THE_ISA should be for all compilation
env.Append(CPPDEFINES=[('THE_ISA','%s_ISA' % env['TARGET_ISA'].upper())])