SConscript (4202:f7a05daec670) SConscript (5192:582e583f8e7e)
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

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

29# Authors: Steve Reinhardt
30
31Import('*')
32
33if env['FULL_SYSTEM']:
34 Source('kernel_stats.cc')
35 Source('system_events.cc')
36
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

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

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