SConscript revision 4381
1955SN/A# -*- mode:python -*- 2955SN/A 31762SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan 4955SN/A# All rights reserved. 5955SN/A# 6955SN/A# Redistribution and use in source and binary forms, with or without 7955SN/A# modification, are permitted provided that the following conditions are 8955SN/A# met: redistributions of source code must retain the above copyright 9955SN/A# notice, this list of conditions and the following disclaimer; 10955SN/A# redistributions in binary form must reproduce the above copyright 11955SN/A# notice, this list of conditions and the following disclaimer in the 12955SN/A# documentation and/or other materials provided with the distribution; 13955SN/A# neither the name of the copyright holders nor the names of its 14955SN/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. 282665Ssaidi@eecs.umich.edu# 294762Snate@binkert.org# Authors: Steve Reinhardt 30955SN/A 315522Snate@binkert.orgimport os 326143Snate@binkert.orgimport sys 334762Snate@binkert.org 345522Snate@binkert.orgfrom os.path import join as joinpath 35955SN/A 365522Snate@binkert.orgimport SCons 37955SN/A 385522Snate@binkert.org# This file defines how to build a particular configuration of M5 394202Sbinkertn@umich.edu# based on variable settings in the 'env' build environment. 405742Snate@binkert.org 41955SN/AImport('*') 424381Sbinkertn@umich.edu 434381Sbinkertn@umich.edusources = [] 44955SN/Adef Source(source): 45955SN/A if isinstance(source, SCons.Node.FS.File): 46955SN/A sources.append(source) 474202Sbinkertn@umich.edu else: 48955SN/A sources.append(File(source)) 494382Sbinkertn@umich.edu 504382Sbinkertn@umich.eduExport('env') 514382Sbinkertn@umich.eduExport('Source') 526654Snate@binkert.org 535517Snate@binkert.org# Include file paths are rooted in this directory. SCons will 546143Snate@binkert.org# automatically expand '.' to refer to both the source directory and 556143Snate@binkert.org# the corresponding build directory to pick up generated include 566143Snate@binkert.org# files. 576143Snate@binkert.orgenv.Append(CPPPATH=Dir('.')) 586143Snate@binkert.org 596143Snate@binkert.org# Add a flag defining what THE_ISA should be for all compilation 606143Snate@binkert.orgenv.Append(CPPDEFINES=[('THE_ISA','%s_ISA' % env['TARGET_ISA'].upper())]) 616143Snate@binkert.org 626143Snate@binkert.org# Walk the tree and execute all SConscripts 636143Snate@binkert.orgscripts = [] 646143Snate@binkert.orgsrcdir = env['SRCDIR'] 656143Snate@binkert.orgfor root, dirs, files in os.walk(srcdir, topdown=True): 666143Snate@binkert.org if root == srcdir: 676143Snate@binkert.org # we don't want to recurse back into this SConscript 686143Snate@binkert.org continue 694762Snate@binkert.org 706143Snate@binkert.org if 'SConscript' in files: 716143Snate@binkert.org # strip off the srcdir part since scons will try to find the 726143Snate@binkert.org # script in the build directory 736143Snate@binkert.org base = root[len(srcdir) + 1:] 746143Snate@binkert.org SConscript(joinpath(base, 'SConscript')) 756143Snate@binkert.org 766143Snate@binkert.orgfor opt in env.ExportOptions: 776143Snate@binkert.org env.ConfigFile(opt) 786143Snate@binkert.org 796143Snate@binkert.org# This function adds the specified sources to the given build 806143Snate@binkert.org# environment, and returns a list of all the corresponding SCons 816143Snate@binkert.org# Object nodes (including an extra one for date.cc). We explicitly 826143Snate@binkert.org# add the Object nodes so we can set up special dependencies for 836143Snate@binkert.org# date.cc. 846143Snate@binkert.orgdef make_objs(sources, env): 856143Snate@binkert.org objs = [env.Object(s) for s in sources] 866143Snate@binkert.org # make date.cc depend on all other objects so it always gets 876143Snate@binkert.org # recompiled whenever anything else does 886143Snate@binkert.org date_obj = env.Object('base/date.cc') 896143Snate@binkert.org env.Depends(date_obj, objs) 906143Snate@binkert.org objs.append(date_obj) 916143Snate@binkert.org return objs 926143Snate@binkert.org 936143Snate@binkert.org################################################### 946143Snate@binkert.org# 956143Snate@binkert.org# Define binaries. Each different build type (debug, opt, etc.) gets 966143Snate@binkert.org# a slightly different build environment. 976143Snate@binkert.org# 986143Snate@binkert.org################################################### 996143Snate@binkert.org 1006143Snate@binkert.org# List of constructed environments to pass back to SConstruct 1016143Snate@binkert.orgenvList = [] 1026143Snate@binkert.org 1036143Snate@binkert.org# Function to create a new build environment as clone of current 1046143Snate@binkert.org# environment 'env' with modified object suffix and optional stripped 1056143Snate@binkert.org# binary. Additional keyword arguments are appended to corresponding 1066143Snate@binkert.org# build environment vars. 1076143Snate@binkert.orgdef makeEnv(label, objsfx, strip = False, **kwargs): 1086143Snate@binkert.org newEnv = env.Copy(OBJSUFFIX=objsfx) 1096143Snate@binkert.org newEnv.Label = label 1106143Snate@binkert.org newEnv.Append(**kwargs) 1116143Snate@binkert.org exe = 'm5.' + label # final executable 1126143Snate@binkert.org bin = exe + '.bin' # executable w/o appended Python zip archive 1135522Snate@binkert.org newEnv.Program(bin, make_objs(sources, newEnv)) 1146143Snate@binkert.org if strip: 1156143Snate@binkert.org stripped_bin = bin + '.stripped' 1166143Snate@binkert.org if sys.platform == 'sunos5': 1176143Snate@binkert.org newEnv.Command(stripped_bin, bin, 'cp $SOURCE $TARGET; strip $TARGET') 1186143Snate@binkert.org else: 1196143Snate@binkert.org newEnv.Command(stripped_bin, bin, 'strip $SOURCE -o $TARGET') 1206143Snate@binkert.org bin = stripped_bin 1216143Snate@binkert.org targets = newEnv.Concat(exe, [bin, 'python/m5py.zip']) 1226143Snate@binkert.org newEnv.M5Binary = targets[0] 1236143Snate@binkert.org envList.append(newEnv) 1245522Snate@binkert.org 1255522Snate@binkert.org# Debug binary 1265522Snate@binkert.orgccflags = {} 1275522Snate@binkert.orgif env['GCC']: 1285604Snate@binkert.org if sys.platform == 'sunos5': 1295604Snate@binkert.org ccflags['debug'] = '-gstabs+' 1306143Snate@binkert.org else: 1316143Snate@binkert.org ccflags['debug'] = '-ggdb3' 1324762Snate@binkert.org ccflags['opt'] = '-g -O3' 1334762Snate@binkert.org ccflags['fast'] = '-O3' 1346143Snate@binkert.org ccflags['prof'] = '-O3 -g -pg' 1356143Snate@binkert.orgelif env['SUNCC']: 1366143Snate@binkert.org ccflags['debug'] = '-g0' 1376143Snate@binkert.org ccflags['opt'] = '-g -O' 1384762Snate@binkert.org ccflags['fast'] = '-fast' 1396143Snate@binkert.org ccflags['prof'] = '-fast -g -pg' 1406143Snate@binkert.orgelif env['ICC']: 1416143Snate@binkert.org ccflags['debug'] = '-g -O0' 1426143Snate@binkert.org ccflags['opt'] = '-g -O' 1436143Snate@binkert.org ccflags['fast'] = '-fast' 1446143Snate@binkert.org ccflags['prof'] = '-fast -g -pg' 1456143Snate@binkert.orgelse: 1466143Snate@binkert.org print 'Unknown compiler, please fix compiler options' 1475604Snate@binkert.org Exit(1) 1486143Snate@binkert.org 1496143Snate@binkert.orgmakeEnv('debug', '.do', 1506143Snate@binkert.org CCFLAGS = Split(ccflags['debug']), 1514762Snate@binkert.org CPPDEFINES = ['DEBUG', 'TRACING_ON=1']) 1526143Snate@binkert.org 1534762Snate@binkert.org# Optimized binary 1544762Snate@binkert.orgmakeEnv('opt', '.o', 1554762Snate@binkert.org CCFLAGS = Split(ccflags['opt']), 1566143Snate@binkert.org CPPDEFINES = ['TRACING_ON=1']) 1576143Snate@binkert.org 1584762Snate@binkert.org# "Fast" binary 1596143Snate@binkert.orgmakeEnv('fast', '.fo', strip = True, 1606143Snate@binkert.org CCFLAGS = Split(ccflags['fast']), 1616143Snate@binkert.org CPPDEFINES = ['NDEBUG', 'TRACING_ON=0']) 1626143Snate@binkert.org 1634762Snate@binkert.org# Profiled binary 1646143Snate@binkert.orgmakeEnv('prof', '.po', 1654762Snate@binkert.org CCFLAGS = Split(ccflags['prof']), 1666143Snate@binkert.org CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 1674762Snate@binkert.org LINKFLAGS = '-pg') 1686143Snate@binkert.org 1696143Snate@binkert.orgReturn('envList') 1706143Snate@binkert.org