SConscript (2733:e0eac8fc5774) SConscript (2761:55b821162cd2)
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

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

179 checker_supports = True
180 if not checker_supports:
181 print "Checker only supports CPU models %s, please " \
182 "set USE_CHECKER=False or use one of those CPU models" \
183 % CheckerSupportedCPUList
184 Exit(1)
185
186
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

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

179 checker_supports = True
180 if not checker_supports:
181 print "Checker only supports CPU models %s, please " \
182 "set USE_CHECKER=False or use one of those CPU models" \
183 % CheckerSupportedCPUList
184 Exit(1)
185
186
187# FullCPU sources are included from m5/SConscript since they're not
187# FullCPU sources are included from src/SConscript since they're not
188# below this point in the file hierarchy.
189
190# Convert file names to SCons File objects. This takes care of the
191# path relative to the top of the directory tree.
192sources = [File(s) for s in sources]
193
194Return('sources')
195
188# below this point in the file hierarchy.
189
190# Convert file names to SCons File objects. This takes care of the
191# path relative to the top of the directory tree.
192sources = [File(s) for s in sources]
193
194Return('sources')
195