SConscript revision 2600
12023SN/A# -*- mode:python -*-
22023SN/A
32023SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan
42023SN/A# All rights reserved.
52023SN/A#
62023SN/A# Redistribution and use in source and binary forms, with or without
72023SN/A# modification, are permitted provided that the following conditions are
82023SN/A# met: redistributions of source code must retain the above copyright
92023SN/A# notice, this list of conditions and the following disclaimer;
102023SN/A# redistributions in binary form must reproduce the above copyright
112023SN/A# notice, this list of conditions and the following disclaimer in the
122023SN/A# documentation and/or other materials provided with the distribution;
132023SN/A# neither the name of the copyright holders nor the names of its
142023SN/A# contributors may be used to endorse or promote products derived from
152023SN/A# this software without specific prior written permission.
162023SN/A#
172023SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182023SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192023SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202023SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212023SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222023SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232023SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242023SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252023SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262023SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272023SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282665Ssaidi@eecs.umich.edu
292665Ssaidi@eecs.umich.eduimport os
302665Ssaidi@eecs.umich.eduimport sys
312023SN/Afrom os.path import isdir
324202Sbinkertn@umich.edu
332023SN/A# Import build environment variable from SConstruct.
344202Sbinkertn@umich.eduImport('env')
354997Sgblack@eecs.umich.edu
364202Sbinkertn@umich.edu###################################################
374202Sbinkertn@umich.edu#
384202Sbinkertn@umich.edu# Define needed sources.
394997Sgblack@eecs.umich.edu#
404202Sbinkertn@umich.edu###################################################
414997Sgblack@eecs.umich.edu
424202Sbinkertn@umich.edu# Base sources used by all configurations.
434202Sbinkertn@umich.edubase_sources = Split('''
444997Sgblack@eecs.umich.edu	faults.cc
454826Ssaidi@eecs.umich.edu	isa_traits.cc
462023SN/A	''')
474997Sgblack@eecs.umich.edu
484997Sgblack@eecs.umich.edu# Full-system sources
494202Sbinkertn@umich.edufull_system_sources = Split('''
504486Sbinkertn@umich.edu	tlb.cc
514486Sbinkertn@umich.edu	arguments.cc
524202Sbinkertn@umich.edu	ev5.cc
534202Sbinkertn@umich.edu	osfpal.cc
544202Sbinkertn@umich.edu	stacktrace.cc
554202Sbinkertn@umich.edu	vtophys.cc
564202Sbinkertn@umich.edu	''')
574202Sbinkertn@umich.edu
582023SN/A# Syscall emulation (non-full-system) sources
594202Sbinkertn@umich.edusyscall_emulation_sources = Split('''
604202Sbinkertn@umich.edu	linux/linux.cc
614202Sbinkertn@umich.edu	linux/process.cc
622023SN/A	solaris/solaris.cc
634202Sbinkertn@umich.edu	solaris/process.cc
644202Sbinkertn@umich.edu	process.cc
652023SN/A	''')
664202Sbinkertn@umich.edu
674202Sbinkertn@umich.edusources = base_sources
682023SN/A
694202Sbinkertn@umich.eduif env['FULL_SYSTEM']:
704202Sbinkertn@umich.edu    sources += full_system_sources
712023SN/Aelse:
724202Sbinkertn@umich.edu    sources += syscall_emulation_sources
734202Sbinkertn@umich.edu
744202Sbinkertn@umich.edu# Convert file names to SCons File objects.  This takes care of the
754202Sbinkertn@umich.edu# path relative to the top of the directory tree.
764202Sbinkertn@umich.edusources = [File(s) for s in sources]
774202Sbinkertn@umich.edu
78# Add in files generated by the ISA description.
79isa_desc_files = env.ISADesc('isa/main.isa')
80# Only non-header files need to be compiled.
81isa_desc_sources = [f for f in isa_desc_files if not f.path.endswith('.hh')]
82sources += isa_desc_sources
83
84Return('sources')
85