SConscript (8335:9228e00459d4) | SConscript (8770:81354d3836d4) |
---|---|
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/linux.cc') 37Source('operatingsystem.cc') 38 |
|
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') | 39if env['FULL_SYSTEM']: 40 Source('kernel_stats.cc') 41 Source('system_events.cc') 42 43 DebugFlag('DebugPrintf') 44 DebugFlag('Printf') 45 46 Source('linux/events.cc') 47 Source('linux/linux_syscalls.cc') 48 Source('linux/printk.cc') 49 50 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') 55 DebugFlag('BADADDR') |
53else: 54 Source('linux/linux.cc') 55 Source('operatingsystem.cc') | |