SConscript (8541:27aaee8ec7cc) SConscript (8733:64a7bf8fa56c)
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

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

132 Source('intr_control.cc')
133 Source('profile.cc')
134
135 if env['TARGET_ISA'] == 'sparc':
136 SimObject('LegionTrace.py')
137 Source('legiontrace.cc')
138
139if env['USE_CHECKER']:
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

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

132 Source('intr_control.cc')
133 Source('profile.cc')
134
135 if env['TARGET_ISA'] == 'sparc':
136 SimObject('LegionTrace.py')
137 Source('legiontrace.cc')
138
139if env['USE_CHECKER']:
140 SimObject('DummyChecker.py')
140 Source('checker/cpu.cc')
141 Source('checker/cpu.cc')
142 Source('dummy_checker_builder.cc')
141 DebugFlag('Checker')
142 checker_supports = False
143 for i in CheckerSupportedCPUList:
144 if i in env['CPU_MODELS']:
145 checker_supports = True
146 if not checker_supports:
147 print "Checker only supports CPU models",
148 for i in CheckerSupportedCPUList:

--- 43 unchanged lines hidden ---
143 DebugFlag('Checker')
144 checker_supports = False
145 for i in CheckerSupportedCPUList:
146 if i in env['CPU_MODELS']:
147 checker_supports = True
148 if not checker_supports:
149 print "Checker only supports CPU models",
150 for i in CheckerSupportedCPUList:

--- 43 unchanged lines hidden ---