SConscript revision 3918
12086SN/A# -*- mode:python -*-
22086SN/A
32086SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan
42086SN/A# All rights reserved.
52086SN/A#
62086SN/A# Redistribution and use in source and binary forms, with or without
72086SN/A# modification, are permitted provided that the following conditions are
82086SN/A# met: redistributions of source code must retain the above copyright
92086SN/A# notice, this list of conditions and the following disclaimer;
102086SN/A# redistributions in binary form must reproduce the above copyright
112086SN/A# notice, this list of conditions and the following disclaimer in the
122086SN/A# documentation and/or other materials provided with the distribution;
132086SN/A# neither the name of the copyright holders nor the names of its
142086SN/A# contributors may be used to endorse or promote products derived from
152086SN/A# this software without specific prior written permission.
162086SN/A#
172086SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182086SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192086SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202086SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212086SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222086SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232086SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242086SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252086SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262086SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272086SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282665Ssaidi@eecs.umich.edu#
292665Ssaidi@eecs.umich.edu# Authors: Gabe Black
302665Ssaidi@eecs.umich.edu#          Steve Reinhardt
312086SN/A#          Korey Sewell
324202Sbinkertn@umich.edu
332086SN/Aimport os
344202Sbinkertn@umich.eduimport sys
354202Sbinkertn@umich.edufrom os.path import isdir
364202Sbinkertn@umich.edu
374202Sbinkertn@umich.edu# Import build environment variable from SConstruct.
384202Sbinkertn@umich.eduImport('env')
394202Sbinkertn@umich.edu
404997Sgblack@eecs.umich.edu###################################################
414202Sbinkertn@umich.edu#
424202Sbinkertn@umich.edu# Define needed sources.
434997Sgblack@eecs.umich.edu#
444826Ssaidi@eecs.umich.edu###################################################
452086SN/A
464997Sgblack@eecs.umich.edu# Base sources used by all configurations.
475800Snate@binkert.orgbase_sources = Split('''
484997Sgblack@eecs.umich.edu	faults.cc
494202Sbinkertn@umich.edu	isa_traits.cc
504486Sbinkertn@umich.edu        utility.cc
515647Sgblack@eecs.umich.edu	''')
524486Sbinkertn@umich.edu
535647Sgblack@eecs.umich.edu# Full-system sources
544202Sbinkertn@umich.edufull_system_sources = Split('''
554202Sbinkertn@umich.edu	#Insert Full-System Files Here
564202Sbinkertn@umich.edu	''')
574202Sbinkertn@umich.edu
584202Sbinkertn@umich.edu# Syscall emulation (non-full-system) sources
594202Sbinkertn@umich.edusyscall_emulation_sources = Split('''
602086SN/A        linux/linux.cc
614202Sbinkertn@umich.edu	linux/process.cc
624202Sbinkertn@umich.edu        process.cc
634202Sbinkertn@umich.edu	''')
642086SN/A
654202Sbinkertn@umich.edu# Set up complete list of sources based on configuration.
664202Sbinkertn@umich.edusources = base_sources
672086SN/A
684202Sbinkertn@umich.eduif env['FULL_SYSTEM']:
694202Sbinkertn@umich.edu    sources += full_system_sources
704202Sbinkertn@umich.eduelse:
714202Sbinkertn@umich.edu    sources += syscall_emulation_sources
724202Sbinkertn@umich.edu
734202Sbinkertn@umich.edu# Convert file names to SCons File objects.  This takes care of the
74# path relative to the top of the directory tree.
75sources = [File(s) for s in sources]
76
77# Add in files generated by the ISA description.
78isa_desc_files = env.ISADesc('isa/main.isa')
79# Only non-header files need to be compiled.
80isa_desc_sources = [f for f in isa_desc_files if not f.path.endswith('.hh')]
81sources += isa_desc_sources
82
83Return('sources')
84