SE/FS: Compile in system events in SE mode.
This commit is contained in:
parent
37a437893e
commit
8009b53c41
2 changed files with 15 additions and 14 deletions
|
@ -33,23 +33,25 @@ Import('*')
|
|||
if env['TARGET_ISA'] == 'no':
|
||||
Return()
|
||||
|
||||
Source('linux/linux.cc')
|
||||
Source('operatingsystem.cc')
|
||||
|
||||
if env['FULL_SYSTEM']:
|
||||
Source('kernel_stats.cc')
|
||||
Source('system_events.cc')
|
||||
|
||||
DebugFlag('DebugPrintf')
|
||||
DebugFlag('Printf')
|
||||
|
||||
Source('linux/events.cc')
|
||||
Source('linux/linux_syscalls.cc')
|
||||
Source('linux/linux.cc')
|
||||
Source('linux/printk.cc')
|
||||
Source('operatingsystem.cc')
|
||||
Source('system_events.cc')
|
||||
|
||||
if env['TARGET_ISA'] == 'alpha':
|
||||
Source('tru64/dump_mbuf.cc')
|
||||
Source('tru64/printf.cc')
|
||||
Source('tru64/tru64_events.cc')
|
||||
Source('tru64/tru64_syscalls.cc')
|
||||
|
||||
DebugFlag('BADADDR')
|
||||
|
||||
DebugFlag('DebugPrintf')
|
||||
DebugFlag('Printf')
|
||||
|
||||
if env['FULL_SYSTEM']:
|
||||
Source('kernel_stats.cc')
|
||||
Source('linux/linux_syscalls.cc')
|
||||
|
||||
if env['TARGET_ISA'] == 'alpha':
|
||||
Source('tru64/tru64_syscalls.cc')
|
||||
|
|
|
@ -34,6 +34,7 @@ SimObject('BaseTLB.py')
|
|||
SimObject('Root.py')
|
||||
SimObject('InstTracer.py')
|
||||
|
||||
Source('arguments.cc')
|
||||
Source('async.cc')
|
||||
Source('core.cc')
|
||||
Source('debug.cc')
|
||||
|
@ -56,9 +57,7 @@ if env['TARGET_ISA'] != 'no':
|
|||
Source('pseudo_inst.cc')
|
||||
Source('system.cc')
|
||||
|
||||
if env['FULL_SYSTEM']:
|
||||
Source('arguments.cc')
|
||||
elif env['TARGET_ISA'] != 'no':
|
||||
if not env['FULL_SYSTEM'] and env['TARGET_ISA'] != 'no':
|
||||
Source('tlb.cc')
|
||||
|
||||
DebugFlag('Checkpoint')
|
||||
|
|
Loading…
Reference in a new issue