SConstruct (8881:042d509574c1) SConstruct (8887:20ea02da9c53)
1# -*- mode:python -*-
2
3# Copyright (c) 2011 Advanced Micro Devices, Inc.
4# Copyright (c) 2009 The Hewlett-Packard Development Company
5# Copyright (c) 2004-2005 The Regents of The University of Michigan
6# All rights reserved.
7#
8# Redistribution and use in source and binary forms, with or without

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

840 BoolVariable('SS_COMPATIBLE_FP',
841 'Make floating-point results compatible with SimpleScalar',
842 False),
843 BoolVariable('USE_SSE2',
844 'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts',
845 False),
846 BoolVariable('USE_POSIX_CLOCK', 'Use POSIX Clocks', have_posix_clock),
847 BoolVariable('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv),
1# -*- mode:python -*-
2
3# Copyright (c) 2011 Advanced Micro Devices, Inc.
4# Copyright (c) 2009 The Hewlett-Packard Development Company
5# Copyright (c) 2004-2005 The Regents of The University of Michigan
6# All rights reserved.
7#
8# Redistribution and use in source and binary forms, with or without

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

840 BoolVariable('SS_COMPATIBLE_FP',
841 'Make floating-point results compatible with SimpleScalar',
842 False),
843 BoolVariable('USE_SSE2',
844 'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts',
845 False),
846 BoolVariable('USE_POSIX_CLOCK', 'Use POSIX Clocks', have_posix_clock),
847 BoolVariable('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv),
848 BoolVariable('USE_CHECKER', 'Use checker for detailed CPU models', False),
849 BoolVariable('CP_ANNOTATE', 'Enable critical path annotation capability', False),
850 )
851
852# These variables get exported to #defines in config/*.hh (see src/SConscript).
853export_vars += ['USE_FENV', 'NO_FAST_ALLOC', 'FORCE_FAST_ALLOC',
848 BoolVariable('CP_ANNOTATE', 'Enable critical path annotation capability', False),
849 )
850
851# These variables get exported to #defines in config/*.hh (see src/SConscript).
852export_vars += ['USE_FENV', 'NO_FAST_ALLOC', 'FORCE_FAST_ALLOC',
854 'FAST_ALLOC_STATS', 'SS_COMPATIBLE_FP', 'USE_CHECKER',
853 'FAST_ALLOC_STATS', 'SS_COMPATIBLE_FP',
855 'TARGET_ISA', 'CP_ANNOTATE', 'USE_POSIX_CLOCK' ]
856
857###################################################
858#
859# Define a SCons builder for configuration flag headers.
860#
861###################################################
862

--- 179 unchanged lines hidden ---
854 'TARGET_ISA', 'CP_ANNOTATE', 'USE_POSIX_CLOCK' ]
855
856###################################################
857#
858# Define a SCons builder for configuration flag headers.
859#
860###################################################
861

--- 179 unchanged lines hidden ---