SConscript revision 2447
15703SN/A# -*- mode:python -*-
25703SN/A
310726Sandreas.hansson@arm.com# Copyright (c) 2004-2005 The Regents of The University of Michigan
410726Sandreas.hansson@arm.com# All rights reserved.
510726Sandreas.hansson@arm.com#
65703SN/A# Redistribution and use in source and binary forms, with or without
710726Sandreas.hansson@arm.com# modification, are permitted provided that the following conditions are
810726Sandreas.hansson@arm.com# met: redistributions of source code must retain the above copyright
910726Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer;
1010726Sandreas.hansson@arm.com# redistributions in binary form must reproduce the above copyright
1110726Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer in the
1210726Sandreas.hansson@arm.com# documentation and/or other materials provided with the distribution;
1310726Sandreas.hansson@arm.com# neither the name of the copyright holders nor the names of its
1410036SAli.Saidi@ARM.com# contributors may be used to endorse or promote products derived from
1510036SAli.Saidi@ARM.com# this software without specific prior written permission.
1610726Sandreas.hansson@arm.com#
1710726Sandreas.hansson@arm.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1810726Sandreas.hansson@arm.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1910726Sandreas.hansson@arm.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2010576Sandreas.hansson@arm.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2110726Sandreas.hansson@arm.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2210726Sandreas.hansson@arm.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2310726Sandreas.hansson@arm.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2410726Sandreas.hansson@arm.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2510726Sandreas.hansson@arm.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2610726Sandreas.hansson@arm.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2710726Sandreas.hansson@arm.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2810726Sandreas.hansson@arm.com
2910726Sandreas.hansson@arm.comimport os
3010726Sandreas.hansson@arm.comimport sys
3110576Sandreas.hansson@arm.comfrom os.path import isdir
3210726Sandreas.hansson@arm.com
3310726Sandreas.hansson@arm.com# Import build environment variable from SConstruct.
3410726Sandreas.hansson@arm.comImport('env')
3510726Sandreas.hansson@arm.com
3610726Sandreas.hansson@arm.com###################################################
3710726Sandreas.hansson@arm.com#
3810726Sandreas.hansson@arm.com# Define needed sources.
3910726Sandreas.hansson@arm.com#
4010726Sandreas.hansson@arm.com###################################################
4110726Sandreas.hansson@arm.com
4210726Sandreas.hansson@arm.com# Base sources used by all configurations.
4310726Sandreas.hansson@arm.combase_sources = Split('''
4410726Sandreas.hansson@arm.com	faults.cc
4510726Sandreas.hansson@arm.com	isa_traits.cc
4610726Sandreas.hansson@arm.com	''')
4710726Sandreas.hansson@arm.com
4810726Sandreas.hansson@arm.com# Full-system sources
4910726Sandreas.hansson@arm.comfull_system_sources = Split('''
5010726Sandreas.hansson@arm.com	memory.cc
5110726Sandreas.hansson@arm.com	arguments.cc
5210726Sandreas.hansson@arm.com	mips34k.cc
5310726Sandreas.hansson@arm.com	osfpal.cc
5410726Sandreas.hansson@arm.com	stacktrace.cc
5510726Sandreas.hansson@arm.com	vtophys.cc
5610726Sandreas.hansson@arm.com	''')
5710726Sandreas.hansson@arm.com
5810726Sandreas.hansson@arm.com# Syscall emulation (non-full-system) sources
5910726Sandreas.hansson@arm.comsyscall_emulation_sources = Split('''
6010726Sandreas.hansson@arm.com	linux_process.cc
6110726Sandreas.hansson@arm.com        process.cc
6210726Sandreas.hansson@arm.com	''')
6310726Sandreas.hansson@arm.com
6410726Sandreas.hansson@arm.com# Set up complete list of sources based on configuration.
6510726Sandreas.hansson@arm.comsources = base_sources
6610726Sandreas.hansson@arm.com
6710726Sandreas.hansson@arm.comif env['FULL_SYSTEM']:
6810726Sandreas.hansson@arm.com    sources += full_system_sources
6910726Sandreas.hansson@arm.comelse:
7010726Sandreas.hansson@arm.com    sources += syscall_emulation_sources
7110726Sandreas.hansson@arm.com
7210726Sandreas.hansson@arm.com# Convert file names to SCons File objects.  This takes care of the
7310726Sandreas.hansson@arm.com# path relative to the top of the directory tree.
7410726Sandreas.hansson@arm.comsources = [File(s) for s in sources]
7510726Sandreas.hansson@arm.com
7610726Sandreas.hansson@arm.com# Add in files generated by the ISA description.
7710726Sandreas.hansson@arm.comisa_desc_files = env.ISADesc('isa/main.isa')
7810726Sandreas.hansson@arm.com# Only non-header files need to be compiled.
7910726Sandreas.hansson@arm.comisa_desc_sources = [f for f in isa_desc_files if not f.path.endswith('.hh')]
8010726Sandreas.hansson@arm.comsources += isa_desc_sources
8110726Sandreas.hansson@arm.com
8210726Sandreas.hansson@arm.comReturn('sources')
8310726Sandreas.hansson@arm.com