SConscript (8777:dd43f1c9fa0a) | SConscript (8788:2d403a6d7078) |
---|---|
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 --- 22 unchanged lines hidden (view full) --- 31Import('*') 32 33if env['TARGET_ISA'] == 'no': 34 Return() 35 36Source('kernel_stats.cc') 37Source('linux/events.cc') 38Source('linux/linux.cc') | 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 --- 22 unchanged lines hidden (view full) --- 31Import('*') 32 33if env['TARGET_ISA'] == 'no': 34 Return() 35 36Source('kernel_stats.cc') 37Source('linux/events.cc') 38Source('linux/linux.cc') |
39Source('linux/linux_syscalls.cc') |
|
39Source('linux/printk.cc') 40Source('operatingsystem.cc') 41Source('system_events.cc') 42 | 40Source('linux/printk.cc') 41Source('operatingsystem.cc') 42Source('system_events.cc') 43 |
44DebugFlag('DebugPrintf') 45DebugFlag('Printf') 46 |
|
43if env['TARGET_ISA'] == 'alpha': 44 Source('tru64/dump_mbuf.cc') 45 Source('tru64/printf.cc') 46 Source('tru64/tru64_events.cc') | 47if 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') |
|
47 48 DebugFlag('BADADDR') | 52 53 DebugFlag('BADADDR') |
49 50DebugFlag('DebugPrintf') 51DebugFlag('Printf') 52 53if env['FULL_SYSTEM']: 54 Source('linux/linux_syscalls.cc') 55 56 if env['TARGET_ISA'] == 'alpha': 57 Source('tru64/tru64_syscalls.cc') | |