SConscript (8770:81354d3836d4) SConscript (8774:232b5574d9c3)
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
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
36Source('linux/events.cc')
36Source('linux/linux.cc')
37Source('linux/linux.cc')
38Source('linux/printk.cc')
37Source('operatingsystem.cc')
39Source('operatingsystem.cc')
40Source('system_events.cc')
38
41
39if env['FULL_SYSTEM']:
40 Source('kernel_stats.cc')
41 Source('system_events.cc')
42if env['TARGET_ISA'] == 'alpha':
43 Source('tru64/dump_mbuf.cc')
44 Source('tru64/printf.cc')
45 Source('tru64/tru64_events.cc')
42
46
43 DebugFlag('DebugPrintf')
44 DebugFlag('Printf')
47 DebugFlag('BADADDR')
45
48
46 Source('linux/events.cc')
49DebugFlag('DebugPrintf')
50DebugFlag('Printf')
51
52if env['FULL_SYSTEM']:
53 Source('kernel_stats.cc')
47 Source('linux/linux_syscalls.cc')
54 Source('linux/linux_syscalls.cc')
48 Source('linux/printk.cc')
49
50 if env['TARGET_ISA'] == 'alpha':
55
56 if env['TARGET_ISA'] == 'alpha':
51 Source('tru64/dump_mbuf.cc')
52 Source('tru64/printf.cc')
53 Source('tru64/tru64_events.cc')
54 Source('tru64/tru64_syscalls.cc')
57 Source('tru64/tru64_syscalls.cc')
55 DebugFlag('BADADDR')