SConscript (7768:cdb18c1b51ea) | SConscript (8335:9228e00459d4) |
---|---|
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 --- 23 unchanged lines hidden (view full) --- 32 33if env['TARGET_ISA'] == 'no': 34 Return() 35 36if env['FULL_SYSTEM']: 37 Source('kernel_stats.cc') 38 Source('system_events.cc') 39 | 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 --- 23 unchanged lines hidden (view full) --- 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 TraceFlag('DebugPrintf') 41 TraceFlag('Printf') | 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') | 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 TraceFlag('BADADDR') | 52 DebugFlag('BADADDR') |
53else: 54 Source('linux/linux.cc') 55 Source('operatingsystem.cc') | 53else: 54 Source('linux/linux.cc') 55 Source('operatingsystem.cc') |