SConscript revision 12047
14762Snate@binkert.org#!python 24762Snate@binkert.org 34762Snate@binkert.org# Copyright (c) 2016, Dresden University of Technology (TU Dresden) 44762Snate@binkert.org# All rights reserved. 54762Snate@binkert.org# 64762Snate@binkert.org# Redistribution and use in source and binary forms, with or without 74762Snate@binkert.org# modification, are permitted provided that the following conditions are 84762Snate@binkert.org# met: 94762Snate@binkert.org# 104762Snate@binkert.org# 1. Redistributions of source code must retain the above copyright notice, 114762Snate@binkert.org# this list of conditions and the following disclaimer. 124762Snate@binkert.org# 134762Snate@binkert.org# 2. Redistributions in binary form must reproduce the above copyright 144762Snate@binkert.org# notice, this list of conditions and the following disclaimer in the 154762Snate@binkert.org# documentation and/or other materials provided with the distribution. 164762Snate@binkert.org# 174762Snate@binkert.org# 3. Neither the name of the copyright holder nor the names of its 184762Snate@binkert.org# contributors may be used to endorse or promote products derived from 194762Snate@binkert.org# this software without specific prior written permission. 204762Snate@binkert.org# 214762Snate@binkert.org# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 224762Snate@binkert.org# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 234762Snate@binkert.org# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 244762Snate@binkert.org# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER 254762Snate@binkert.org# OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 264762Snate@binkert.org# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 274762Snate@binkert.org# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 284762Snate@binkert.org# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 294762Snate@binkert.org# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 304762Snate@binkert.org# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 314762Snate@binkert.org# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 324762Snate@binkert.org# 334762Snate@binkert.org# Authors: Christian Menard 344762Snate@binkert.org 35Import('env') 36 37env = env.Clone() 38 39gem5_root = env['GEM5_ROOT'] 40 41systemc_src = [] 42systemc_src += Install('.', gem5_root + '/util/systemc/sc_gem5_control.cc'), 43systemc_src += Install('.', gem5_root + '/util/systemc/sc_logger.cc'), 44systemc_src += Install('.', gem5_root + '/util/systemc/sc_module.cc'), 45systemc_src += Install('.', gem5_root + '/util/systemc/stats.cc'), 46 47tlm_src = [] 48tlm_src += [File('master_transactor.cc')] 49tlm_src += [File('sc_ext.cc')] 50tlm_src += [File('sc_master_port.cc')] 51tlm_src += [File('sc_mm.cc')] 52tlm_src += [File('sc_slave_port.cc')] 53tlm_src += [File('sim_control.cc')] 54tlm_src += [File('slave_transactor.cc')] 55 56tlm = env.Library('gem5_tlm', tlm_src + systemc_src) 57 58Return('tlm') 59