SConstruct (3643:d9700ac6ca6d) SConstruct (3685:c60391e0f767)
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

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

339sticky_opts = Options(args=ARGUMENTS)
340sticky_opts.AddOptions(
341 EnumOption('TARGET_ISA', 'Target ISA', 'alpha', env['ALL_ISA_LIST']),
342 BoolOption('FULL_SYSTEM', 'Full-system support', False),
343 # There's a bug in scons 0.96.1 that causes ListOptions with list
344 # values (more than one value) not to be able to be restored from
345 # a saved option file. If this causes trouble then upgrade to
346 # 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

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

339sticky_opts = Options(args=ARGUMENTS)
340sticky_opts.AddOptions(
341 EnumOption('TARGET_ISA', 'Target ISA', 'alpha', env['ALL_ISA_LIST']),
342 BoolOption('FULL_SYSTEM', 'Full-system support', False),
343 # There's a bug in scons 0.96.1 that causes ListOptions with list
344 # values (more than one value) not to be able to be restored from
345 # a saved option file. If this causes trouble then upgrade to
346 # scons 0.96.90 or later.
347 ListOption('CPU_MODELS', 'CPU models', 'AtomicSimpleCPU,TimingSimpleCPU',
347 ListOption('CPU_MODELS', 'CPU models', 'AtomicSimpleCPU,TimingSimpleCPU,O3CPU',
348 env['ALL_CPU_LIST']),
349 BoolOption('ALPHA_TLASER',
350 'Model Alpha TurboLaser platform (vs. Tsunami)', False),
351 BoolOption('NO_FAST_ALLOC', 'Disable fast object allocator', False),
352 BoolOption('EFENCE', 'Link with Electric Fence malloc debugger',
353 False),
354 BoolOption('SS_COMPATIBLE_FP',
355 'Make floating-point results compatible with SimpleScalar',

--- 271 unchanged lines hidden ---
348 env['ALL_CPU_LIST']),
349 BoolOption('ALPHA_TLASER',
350 'Model Alpha TurboLaser platform (vs. Tsunami)', False),
351 BoolOption('NO_FAST_ALLOC', 'Disable fast object allocator', False),
352 BoolOption('EFENCE', 'Link with Electric Fence malloc debugger',
353 False),
354 BoolOption('SS_COMPATIBLE_FP',
355 'Make floating-point results compatible with SimpleScalar',

--- 271 unchanged lines hidden ---