Deleted Added
sdiff udiff text old ( 4776:8c8407243a2c ) new ( 5192:582e583f8e7e )
full compact
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

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

131 Source('legiontrace.cc')
132
133if env['TARGET_ISA'] == 'x86':
134 SimObject('NativeTrace.py')
135 Source('nativetrace.cc')
136
137if env['USE_CHECKER']:
138 Source('checker/cpu.cc')
139 checker_supports = False
140 for i in CheckerSupportedCPUList:
141 if i in env['CPU_MODELS']:
142 checker_supports = True
143 if not checker_supports:
144 print "Checker only supports CPU models",
145 for i in CheckerSupportedCPUList:
146 print i,
147 print ", please set USE_CHECKER=False or use one of those CPU models"
148 Exit(1)