SConscript (5795:72ce7502dc71) | SConscript (7768:cdb18c1b51ea) |
---|---|
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 --- 16 unchanged lines hidden (view full) --- 25# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28# 29# Authors: Steve Reinhardt 30 31Import('*') 32 | 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 --- 16 unchanged lines hidden (view full) --- 25# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28# 29# Authors: Steve Reinhardt 30 31Import('*') 32 |
33if env['TARGET_ISA'] == 'no': 34 Return() 35 |
|
33if env['FULL_SYSTEM']: 34 Source('kernel_stats.cc') 35 Source('system_events.cc') 36 37 TraceFlag('DebugPrintf') 38 TraceFlag('Printf') 39 40 Source('linux/events.cc') --- 12 unchanged lines hidden --- | 36if env['FULL_SYSTEM']: 37 Source('kernel_stats.cc') 38 Source('system_events.cc') 39 40 TraceFlag('DebugPrintf') 41 TraceFlag('Printf') 42 43 Source('linux/events.cc') --- 12 unchanged lines hidden --- |