summaryrefslogtreecommitdiff
path: root/SConscript
diff options
context:
space:
mode:
authorKorey Sewell <ksewell@umich.edu>2006-03-14 18:30:09 -0500
committerKorey Sewell <ksewell@umich.edu>2006-03-14 18:30:09 -0500
commit0d8cfed042cbd987fd5b9c5d9307d8c34225c90e (patch)
treed7fd03fa79135645a11629da94a9d3d33478b7ea /SConscript
parent67a1b7a61b42abb9be2fb075ec0d4cc2f6414926 (diff)
parent6547e8882ba8fa538a8a80040b7eb82baedc540a (diff)
downloadgem5-0d8cfed042cbd987fd5b9c5d9307d8c34225c90e.tar.xz
Merge zizzer:/bk/newmem
into zazzer.eecs.umich.edu:/.automount/zooks/y/ksewell/research/m5-sim/newmem --HG-- extra : convert_revision : 054833d2f7019b9a1247efc4451ccb143242059d
Diffstat (limited to 'SConscript')
-rw-r--r--SConscript13
1 files changed, 9 insertions, 4 deletions
diff --git a/SConscript b/SConscript
index e9957e143..ae77cbbc6 100644
--- a/SConscript
+++ b/SConscript
@@ -248,16 +248,21 @@ turbolaser_sources = Split('''
# Syscall emulation (non-full-system) sources
syscall_emulation_sources = Split('''
-
- encumbered/eio/exolex.cc
- encumbered/eio/libexo.cc
- encumbered/eio/eio.cc
kern/linux/linux.cc
kern/tru64/tru64.cc
sim/process.cc
sim/syscall_emul.cc
''')
+alpha_eio_sources = Split('''
+ encumbered/eio/exolex.cc
+ encumbered/eio/libexo.cc
+ encumbered/eio/eio.cc
+ ''')
+
+if env['TARGET_ISA'] == 'ALPHA_ISA':
+ syscall_emulation_sources += alpha_eio_sources
+
memtest_sources = Split('''
cpu/memtest/memtest.cc
''')