SConstruct (2634:db0b1133abd5) SConstruct (2635:47ee03367e30)
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

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

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),
211 # There's a bug in scons 0.96.1 that causes ListOptions with list
212 # values (more than one value) not to be able to be restored from
213 # a saved option file. If this causes trouble then upgrade to
214 # scons 0.96.90 or later.
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

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

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),
211 # There's a bug in scons 0.96.1 that causes ListOptions with list
212 # values (more than one value) not to be able to be restored from
213 # a saved option file. If this causes trouble then upgrade to
214 # scons 0.96.90 or later.
215 ListOption('CPU_MODELS', 'CPU models', 'all', env['ALL_CPU_LIST']),
215 ListOption('CPU_MODELS', 'CPU models', 'AtomicSimpleCPU,TimingSimpleCPU',
216 env['ALL_CPU_LIST']),
216 BoolOption('ALPHA_TLASER',
217 'Model Alpha TurboLaser platform (vs. Tsunami)', False),
218 BoolOption('NO_FAST_ALLOC', 'Disable fast object allocator', False),
219 BoolOption('EFENCE', 'Link with Electric Fence malloc debugger',
220 False),
221 BoolOption('SS_COMPATIBLE_FP',
222 'Make floating-point results compatible with SimpleScalar',
223 False),

--- 201 unchanged lines hidden ---
217 BoolOption('ALPHA_TLASER',
218 'Model Alpha TurboLaser platform (vs. Tsunami)', False),
219 BoolOption('NO_FAST_ALLOC', 'Disable fast object allocator', False),
220 BoolOption('EFENCE', 'Link with Electric Fence malloc debugger',
221 False),
222 BoolOption('SS_COMPATIBLE_FP',
223 'Make floating-point results compatible with SimpleScalar',
224 False),

--- 201 unchanged lines hidden ---