SConscript revision 4120
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.edu# Authors: Gabe Black
302665Ssaidi@eecs.umich.edu#          Steve Reinhardt
312023SN/A
322023SN/Aimport os
332023SN/Aimport sys
342023SN/Afrom os.path import isdir
352023SN/A
362023SN/A# This file defines how to build a particular configuration of M5
372023SN/A# based on variable settings in the 'env' build environment.
382023SN/A
392023SN/A# Import build environment variable from SConstruct.
402023SN/AImport('env')
412023SN/A
422023SN/A###################################################
432023SN/A#
442023SN/A# Define needed sources.
452023SN/A#
462023SN/A###################################################
472023SN/A
482023SN/A# Base sources used by all configurations.
492152SN/Abase_sources = Split('''
502152SN/A	faults.cc
513592Sgblack@eecs.umich.edu	floatregfile.cc
523592Sgblack@eecs.umich.edu	intregfile.cc
533586Sgblack@eecs.umich.edu	miscregfile.cc
543592Sgblack@eecs.umich.edu	regfile.cc
553960Sgblack@eecs.umich.edu	remote_gdb.cc
562023SN/A	''')
572023SN/A
582023SN/A# Full-system sources
592152SN/Afull_system_sources = Split('''
602152SN/A	arguments.cc
612152SN/A	ev5.cc
623592Sgblack@eecs.umich.edu	freebsd/system.cc
633565Sgblack@eecs.umich.edu	idle_event.cc
643457Sgblack@eecs.umich.edu	ipr.cc
653565Sgblack@eecs.umich.edu	kernel_stats.cc
663592Sgblack@eecs.umich.edu	linux/system.cc
672152SN/A	osfpal.cc
683592Sgblack@eecs.umich.edu	pagetable.cc
692152SN/A	stacktrace.cc
702221SN/A	system.cc
713592Sgblack@eecs.umich.edu	tlb.cc
722221SN/A	tru64/system.cc
733592Sgblack@eecs.umich.edu	vtophys.cc
742023SN/A	''')
752023SN/A
762023SN/A
772023SN/A# Syscall emulation (non-full-system) sources
782152SN/Asyscall_emulation_sources = Split('''
792553SN/A        linux/linux.cc
802221SN/A	linux/process.cc
812553SN/A        tru64/tru64.cc
822221SN/A	tru64/process.cc
832207SN/A	process.cc
842023SN/A	''')
852023SN/A
862023SN/A# Set up complete list of sources based on configuration.
872152SN/Asources = base_sources
882023SN/A
892023SN/Aif env['FULL_SYSTEM']:
902152SN/A    sources += full_system_sources
912023SN/Aelse:
922152SN/A    sources += syscall_emulation_sources
932152SN/A
942152SN/A# Convert file names to SCons File objects.  This takes care of the
952152SN/A# path relative to the top of the directory tree.
962152SN/Asources = [File(s) for s in sources]
972152SN/A
982152SN/A# Add in files generated by the ISA description.
992152SN/Aisa_desc_files = env.ISADesc('isa/main.isa')
1002152SN/A# Only non-header files need to be compiled.
1012152SN/Aisa_desc_sources = [f for f in isa_desc_files if not f.path.endswith('.hh')]
1022152SN/Asources += isa_desc_sources
1032023SN/A
1042023SN/AReturn('sources')
105