SConstruct (2792:440dfbb180a7) SConstruct (2817:273f7fb94f83)
1# -*- mode:python -*-
2
3# Copyright (c) 2004-2005 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

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

258
259env = conf.Finish()
260
261# Define the universe of supported ISAs
262env['ALL_ISA_LIST'] = ['alpha', 'sparc', 'mips']
263
264# Define the universe of supported CPU models
265env['ALL_CPU_LIST'] = ['AtomicSimpleCPU', 'TimingSimpleCPU',
1# -*- mode:python -*-
2
3# Copyright (c) 2004-2005 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

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

258
259env = conf.Finish()
260
261# Define the universe of supported ISAs
262env['ALL_ISA_LIST'] = ['alpha', 'sparc', 'mips']
263
264# Define the universe of supported CPU models
265env['ALL_CPU_LIST'] = ['AtomicSimpleCPU', 'TimingSimpleCPU',
266 'FullCPU', 'AlphaO3CPU',
266 'FullCPU', 'O3CPU',
267 'OzoneCPU']
268
269# Sticky options get saved in the options file so they persist from
270# one invocation to the next (unless overridden, in which case the new
271# value becomes sticky).
272sticky_opts = Options(args=ARGUMENTS)
273sticky_opts.AddOptions(
274 EnumOption('TARGET_ISA', 'Target ISA', 'alpha', env['ALL_ISA_LIST']),

--- 236 unchanged lines hidden ---
267 'OzoneCPU']
268
269# Sticky options get saved in the options file so they persist from
270# one invocation to the next (unless overridden, in which case the new
271# value becomes sticky).
272sticky_opts = Options(args=ARGUMENTS)
273sticky_opts.AddOptions(
274 EnumOption('TARGET_ISA', 'Target ISA', 'alpha', env['ALL_ISA_LIST']),

--- 236 unchanged lines hidden ---