SConstruct (2786:eb979e479472) | SConstruct (2792:440dfbb180a7) |
---|---|
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 --- 250 unchanged lines hidden (view full) --- 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', | 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 --- 250 unchanged lines hidden (view full) --- 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', |
267 'OzoneSimpleCPU', 'OzoneCPU'] | 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']), 275 BoolOption('FULL_SYSTEM', 'Full-system support', False), --- 235 unchanged lines hidden --- | 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']), 275 BoolOption('FULL_SYSTEM', 'Full-system support', False), --- 235 unchanged lines hidden --- |