SConscript revision 4202
1955SN/A# -*- mode:python -*-
2955SN/A
313576Sciro.santilli@arm.com# Copyright (c) 2004-2005 The Regents of The University of Michigan
413576Sciro.santilli@arm.com# All rights reserved.
513576Sciro.santilli@arm.com#
613576Sciro.santilli@arm.com# Redistribution and use in source and binary forms, with or without
713576Sciro.santilli@arm.com# modification, are permitted provided that the following conditions are
813576Sciro.santilli@arm.com# met: redistributions of source code must retain the above copyright
913576Sciro.santilli@arm.com# notice, this list of conditions and the following disclaimer;
1013576Sciro.santilli@arm.com# redistributions in binary form must reproduce the above copyright
1113576Sciro.santilli@arm.com# notice, this list of conditions and the following disclaimer in the
1213576Sciro.santilli@arm.com# documentation and/or other materials provided with the distribution;
1313576Sciro.santilli@arm.com# neither the name of the copyright holders nor the names of its
141762SN/A# contributors may be used to endorse or promote products derived from
15955SN/A# this software without specific prior written permission.
16955SN/A#
17955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28955SN/A#
29955SN/A# Authors: Steve Reinhardt
30955SN/A
31955SN/Aimport os
32955SN/Aimport sys
33955SN/A
34955SN/Afrom os.path import join as joinpath
35955SN/A
36955SN/A# This file defines how to build a particular configuration of M5
37955SN/A# based on variable settings in the 'env' build environment.
38955SN/A
392665Ssaidi@eecs.umich.eduImport('*')
404762Snate@binkert.org
41955SN/Asources = []
4212563Sgabeblack@google.comdef Source(*args):
4312563Sgabeblack@google.com    for arg in args:
445522Snate@binkert.org        if isinstance(arg, (list, tuple)):
456143Snate@binkert.org            # Recurse to load a list
4612371Sgabeblack@google.com            Source(*arg)
474762Snate@binkert.org        elif isinstance(arg, str):
485522Snate@binkert.org            sources.extend([ File(f) for f in Split(arg) ])
49955SN/A        else:
505522Snate@binkert.org            sources.append(File(arg))
5111974Sgabeblack@google.com
52955SN/AExport('env')
535522Snate@binkert.orgExport('Source')
544202Sbinkertn@umich.edu
555742Snate@binkert.org# Include file paths are rooted in this directory.  SCons will
56955SN/A# automatically expand '.' to refer to both the source directory and
574381Sbinkertn@umich.edu# the corresponding build directory to pick up generated include
584381Sbinkertn@umich.edu# files.
5912246Sgabeblack@google.comenv.Append(CPPPATH=Dir('.'))
6012246Sgabeblack@google.com
618334Snate@binkert.org# Add a flag defining what THE_ISA should be for all compilation
62955SN/Aenv.Append(CPPDEFINES=[('THE_ISA','%s_ISA' % env['TARGET_ISA'].upper())])
63955SN/A
644202Sbinkertn@umich.edu# Walk the tree and execute all SConscripts
65955SN/Ascripts = []
664382Sbinkertn@umich.edusrcdir = env['SRCDIR']
674382Sbinkertn@umich.edufor root, dirs, files in os.walk(srcdir, topdown=True):
684382Sbinkertn@umich.edu    if root == srcdir:
696654Snate@binkert.org        # we don't want to recurse back into this SConscript
705517Snate@binkert.org        continue
718614Sgblack@eecs.umich.edu    
727674Snate@binkert.org    if 'SConscript' in files:
736143Snate@binkert.org        # strip off the srcdir part since scons will try to find the
746143Snate@binkert.org        # script in the build directory
756143Snate@binkert.org        base = root[len(srcdir) + 1:]
7612302Sgabeblack@google.com        SConscript(joinpath(base, 'SConscript'))
7712302Sgabeblack@google.com
7812302Sgabeblack@google.comfor opt in env.ExportOptions:
7912371Sgabeblack@google.com    env.ConfigFile(opt)
8012371Sgabeblack@google.com
8112371Sgabeblack@google.com# This function adds the specified sources to the given build
8212371Sgabeblack@google.com# environment, and returns a list of all the corresponding SCons
8312371Sgabeblack@google.com# Object nodes (including an extra one for date.cc).  We explicitly
8412371Sgabeblack@google.com# add the Object nodes so we can set up special dependencies for
8512371Sgabeblack@google.com# date.cc.
8612371Sgabeblack@google.comdef make_objs(sources, env):
8712371Sgabeblack@google.com    objs = [env.Object(s) for s in sources]
8812371Sgabeblack@google.com    # make date.cc depend on all other objects so it always gets
8912371Sgabeblack@google.com    # recompiled whenever anything else does
9012371Sgabeblack@google.com    date_obj = env.Object('base/date.cc')
9112371Sgabeblack@google.com    env.Depends(date_obj, objs)
9212371Sgabeblack@google.com    objs.append(date_obj)
9312371Sgabeblack@google.com    return objs
9412371Sgabeblack@google.com
9512371Sgabeblack@google.com###################################################
9612371Sgabeblack@google.com#
9712371Sgabeblack@google.com# Define binaries.  Each different build type (debug, opt, etc.) gets
9812371Sgabeblack@google.com# a slightly different build environment.
9912371Sgabeblack@google.com#
10012371Sgabeblack@google.com###################################################
10112371Sgabeblack@google.com
10212371Sgabeblack@google.com# List of constructed environments to pass back to SConstruct
10312371Sgabeblack@google.comenvList = []
10412371Sgabeblack@google.com
10512371Sgabeblack@google.com# Function to create a new build environment as clone of current
10612371Sgabeblack@google.com# environment 'env' with modified object suffix and optional stripped
10712371Sgabeblack@google.com# binary.  Additional keyword arguments are appended to corresponding
10812371Sgabeblack@google.com# build environment vars.
10912371Sgabeblack@google.comdef makeEnv(label, objsfx, strip = False, **kwargs):
11012371Sgabeblack@google.com    newEnv = env.Copy(OBJSUFFIX=objsfx)
11112371Sgabeblack@google.com    newEnv.Label = label
11212371Sgabeblack@google.com    newEnv.Append(**kwargs)
11312371Sgabeblack@google.com    exe = 'm5.' + label  # final executable
11412371Sgabeblack@google.com    bin = exe + '.bin'   # executable w/o appended Python zip archive
11512371Sgabeblack@google.com    newEnv.Program(bin, make_objs(sources, newEnv))
11612371Sgabeblack@google.com    if strip:
11712371Sgabeblack@google.com        stripped_bin = bin + '.stripped'
11812371Sgabeblack@google.com        if sys.platform == 'sunos5':
11912371Sgabeblack@google.com            newEnv.Command(stripped_bin, bin, 'cp $SOURCE $TARGET; strip $TARGET')
12012371Sgabeblack@google.com        else:
12112371Sgabeblack@google.com            newEnv.Command(stripped_bin, bin, 'strip $SOURCE -o $TARGET')
12212371Sgabeblack@google.com        bin = stripped_bin
12312371Sgabeblack@google.com    targets = newEnv.Concat(exe, [bin, 'python/m5py.zip'])
12412371Sgabeblack@google.com    newEnv.M5Binary = targets[0]
12512371Sgabeblack@google.com    envList.append(newEnv)
12612302Sgabeblack@google.com
12712371Sgabeblack@google.com# Debug binary
12812302Sgabeblack@google.comccflags = {}
12912371Sgabeblack@google.comif env['GCC']:
13012302Sgabeblack@google.com    if sys.platform == 'sunos5':
13112302Sgabeblack@google.com        ccflags['debug'] = '-gstabs+'
13212371Sgabeblack@google.com    else:
13312371Sgabeblack@google.com        ccflags['debug'] = '-ggdb3'
13412371Sgabeblack@google.com    ccflags['opt'] = '-g -O3'
13512371Sgabeblack@google.com    ccflags['fast'] = '-O3'
13612302Sgabeblack@google.com    ccflags['prof'] = '-O3 -g -pg'
13712371Sgabeblack@google.comelif env['SUNCC']:
13812371Sgabeblack@google.com    ccflags['debug'] = '-g0'
13912371Sgabeblack@google.com    ccflags['opt'] = '-g -O'
14012371Sgabeblack@google.com    ccflags['fast'] = '-fast'
14111983Sgabeblack@google.com    ccflags['prof'] = '-fast -g -pg'
1426143Snate@binkert.orgelif env['ICC']:
1438233Snate@binkert.org    ccflags['debug'] = '-g -O0'
14412302Sgabeblack@google.com    ccflags['opt'] = '-g -O'
1456143Snate@binkert.org    ccflags['fast'] = '-fast'
1466143Snate@binkert.org    ccflags['prof'] = '-fast -g -pg'
14712302Sgabeblack@google.comelse:
1484762Snate@binkert.org    print 'Unknown compiler, please fix compiler options'
1496143Snate@binkert.org    Exit(1)    
1508233Snate@binkert.org
1518233Snate@binkert.orgmakeEnv('debug', '.do',
15212302Sgabeblack@google.com        CCFLAGS = Split(ccflags['debug']),
15312302Sgabeblack@google.com        CPPDEFINES = ['DEBUG', 'TRACING_ON=1'])
1546143Snate@binkert.org
15512362Sgabeblack@google.com# Optimized binary
15612362Sgabeblack@google.commakeEnv('opt', '.o',
15712362Sgabeblack@google.com        CCFLAGS = Split(ccflags['opt']),
15812362Sgabeblack@google.com        CPPDEFINES = ['TRACING_ON=1'])
15912302Sgabeblack@google.com
16012302Sgabeblack@google.com# "Fast" binary
16112302Sgabeblack@google.commakeEnv('fast', '.fo', strip = True,
16212302Sgabeblack@google.com        CCFLAGS = Split(ccflags['fast']),
16312302Sgabeblack@google.com        CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'])
16412363Sgabeblack@google.com
16512363Sgabeblack@google.com# Profiled binary
16612363Sgabeblack@google.commakeEnv('prof', '.po',
16712363Sgabeblack@google.com        CCFLAGS = Split(ccflags['prof']),
16812302Sgabeblack@google.com        CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
16912363Sgabeblack@google.com        LINKFLAGS = '-pg')
17012363Sgabeblack@google.com
17112363Sgabeblack@google.comReturn('envList')
17212363Sgabeblack@google.com