SConscript revision 12854
16019Shines@cs.fsu.edu# Copyright 2018 Google, Inc. 26019Shines@cs.fsu.edu# 310037SARM gem5 Developers# Redistribution and use in source and binary forms, with or without 47100Sgblack@eecs.umich.edu# modification, are permitted provided that the following conditions are 57100Sgblack@eecs.umich.edu# met: redistributions of source code must retain the above copyright 67100Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer; 77100Sgblack@eecs.umich.edu# redistributions in binary form must reproduce the above copyright 87100Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer in the 97100Sgblack@eecs.umich.edu# documentation and/or other materials provided with the distribution; 107100Sgblack@eecs.umich.edu# neither the name of the copyright holders nor the names of its 117100Sgblack@eecs.umich.edu# contributors may be used to endorse or promote products derived from 127100Sgblack@eecs.umich.edu# this software without specific prior written permission. 137100Sgblack@eecs.umich.edu# 147100Sgblack@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 156019Shines@cs.fsu.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 166019Shines@cs.fsu.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 176019Shines@cs.fsu.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 186019Shines@cs.fsu.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 196019Shines@cs.fsu.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 206019Shines@cs.fsu.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 216019Shines@cs.fsu.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 226019Shines@cs.fsu.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 236019Shines@cs.fsu.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 246019Shines@cs.fsu.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 256019Shines@cs.fsu.edu# 266019Shines@cs.fsu.edu# Authors: Gabe Black 276019Shines@cs.fsu.edu 286019Shines@cs.fsu.eduImport('*') 296019Shines@cs.fsu.edu 306019Shines@cs.fsu.eduif env['USE_SYSTEMC']: 316019Shines@cs.fsu.edu Source('sc_fxcast_switch.cc') 326019Shines@cs.fsu.edu Source('sc_fxdefs.cc') 336019Shines@cs.fsu.edu Source('scfx_mant.cc') 346019Shines@cs.fsu.edu Source('sc_fxnum.cc') 356019Shines@cs.fsu.edu Source('sc_fxnum_observer.cc') 366019Shines@cs.fsu.edu Source('scfx_pow10.cc') 376019Shines@cs.fsu.edu Source('scfx_rep.cc') 386019Shines@cs.fsu.edu Source('sc_fxtype_params.cc') 396019Shines@cs.fsu.edu Source('scfx_utils.cc') 406019Shines@cs.fsu.edu Source('sc_fxval.cc') 416019Shines@cs.fsu.edu Source('sc_fxval_observer.cc') 426757SAli.Saidi@ARM.com