SConstruct (2635:47ee03367e30) | SConstruct (2637:18e4273315cd) |
---|---|
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 --- 185 unchanged lines hidden (view full) --- 194 195env = conf.Finish() 196 197# Define the universe of supported ISAs 198env['ALL_ISA_LIST'] = ['alpha', 'sparc', 'mips'] 199 200# Define the universe of supported CPU models 201env['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 --- 185 unchanged lines hidden (view full) --- 194 195env = conf.Finish() 196 197# Define the universe of supported ISAs 198env['ALL_ISA_LIST'] = ['alpha', 'sparc', 'mips'] 199 200# Define the universe of supported CPU models 201env['ALL_CPU_LIST'] = ['AtomicSimpleCPU', 'TimingSimpleCPU', |
202 'FastCPU', 'FullCPU', 'AlphaFullCPU'] | 202 'FullCPU', 'AlphaFullCPU'] |
203 204# Sticky options get saved in the options file so they persist from 205# one invocation to the next (unless overridden, in which case the new 206# value becomes sticky). 207sticky_opts = Options(args=ARGUMENTS) 208sticky_opts.AddOptions( 209 EnumOption('TARGET_ISA', 'Target ISA', 'alpha', env['ALL_ISA_LIST']), 210 BoolOption('FULL_SYSTEM', 'Full-system support', False), --- 215 unchanged lines hidden --- | 203 204# Sticky options get saved in the options file so they persist from 205# one invocation to the next (unless overridden, in which case the new 206# value becomes sticky). 207sticky_opts = Options(args=ARGUMENTS) 208sticky_opts.AddOptions( 209 EnumOption('TARGET_ISA', 'Target ISA', 'alpha', env['ALL_ISA_LIST']), 210 BoolOption('FULL_SYSTEM', 'Full-system support', False), --- 215 unchanged lines hidden --- |