Deleted Added
sdiff udiff text old ( 8335:9228e00459d4 ) new ( 8770:81354d3836d4 )
full compact
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

--- 19 unchanged lines hidden (view full) ---

28#
29# Authors: Steve Reinhardt
30
31Import('*')
32
33if env['TARGET_ISA'] == 'no':
34 Return()
35
36if env['FULL_SYSTEM']:
37 Source('kernel_stats.cc')
38 Source('system_events.cc')
39
40 DebugFlag('DebugPrintf')
41 DebugFlag('Printf')
42
43 Source('linux/events.cc')
44 Source('linux/linux_syscalls.cc')
45 Source('linux/printk.cc')
46
47 if env['TARGET_ISA'] == 'alpha':
48 Source('tru64/dump_mbuf.cc')
49 Source('tru64/printf.cc')
50 Source('tru64/tru64_events.cc')
51 Source('tru64/tru64_syscalls.cc')
52 DebugFlag('BADADDR')
53else:
54 Source('linux/linux.cc')
55 Source('operatingsystem.cc')