SConscript revision 5192
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: Nathan Binkert 30955SN/A 315522Snate@binkert.orgimport imp 326143Snate@binkert.orgimport os 334762Snate@binkert.orgimport sys 345522Snate@binkert.org 35955SN/Afrom os.path import basename 365522Snate@binkert.orgfrom os.path import join as joinpath 3711974Sgabeblack@google.comfrom os.path import exists 38955SN/Afrom os.path import isdir 395522Snate@binkert.orgfrom os.path import isfile 404202Sbinkertn@umich.edu 415742Snate@binkert.orgimport SCons 42955SN/A 434381Sbinkertn@umich.edu# This file defines how to build a particular configuration of M5 444381Sbinkertn@umich.edu# based on variable settings in the 'env' build environment. 4512246Sgabeblack@google.com 4612246Sgabeblack@google.comImport('*') 478334Snate@binkert.org 48955SN/A# Children need to see the environment 49955SN/AExport('env') 504202Sbinkertn@umich.edu 51955SN/Adef sort_list(_list): 524382Sbinkertn@umich.edu """return a sorted copy of '_list'""" 534382Sbinkertn@umich.edu if isinstance(_list, list): 544382Sbinkertn@umich.edu _list = _list[:] 556654Snate@binkert.org else: 565517Snate@binkert.org _list = list(_list) 578614Sgblack@eecs.umich.edu _list.sort() 587674Snate@binkert.org return _list 596143Snate@binkert.org 606143Snate@binkert.orgclass PySourceFile(object): 616143Snate@binkert.org def __init__(self, package, source): 6212302Sgabeblack@google.com filename = str(source) 6312302Sgabeblack@google.com pyname = basename(filename) 6412302Sgabeblack@google.com assert pyname.endswith('.py') 6512302Sgabeblack@google.com name = pyname[:-3] 6612302Sgabeblack@google.com path = package.split('.') 6712302Sgabeblack@google.com modpath = path 6812302Sgabeblack@google.com if name != '__init__': 6912302Sgabeblack@google.com modpath += [name] 7012302Sgabeblack@google.com modpath = '.'.join(modpath) 7112302Sgabeblack@google.com 7212302Sgabeblack@google.com arcpath = package.split('.') + [ pyname + 'c' ] 7312302Sgabeblack@google.com arcname = joinpath(*arcpath) 7412302Sgabeblack@google.com 7512302Sgabeblack@google.com self.source = source 7612302Sgabeblack@google.com self.pyname = pyname 7712302Sgabeblack@google.com self.srcpath = source.srcnode().abspath 7812302Sgabeblack@google.com self.package = package 7912302Sgabeblack@google.com self.modpath = modpath 8012302Sgabeblack@google.com self.arcname = arcname 8112302Sgabeblack@google.com self.filename = filename 8212302Sgabeblack@google.com self.compiled = File(filename + 'c') 8312302Sgabeblack@google.com 8412302Sgabeblack@google.com######################################################################## 8512302Sgabeblack@google.com# Code for adding source files of various types 8612302Sgabeblack@google.com# 8712302Sgabeblack@google.comcc_sources = [] 8812302Sgabeblack@google.comdef Source(source): 8912302Sgabeblack@google.com '''Add a C/C++ source file to the build''' 9012302Sgabeblack@google.com if not isinstance(source, SCons.Node.FS.File): 9111983Sgabeblack@google.com source = File(source) 926143Snate@binkert.org 938233Snate@binkert.org cc_sources.append(source) 9412302Sgabeblack@google.com 956143Snate@binkert.orgpy_sources = [] 966143Snate@binkert.orgdef PySource(package, source): 9712302Sgabeblack@google.com '''Add a python source file to the named package''' 984762Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 996143Snate@binkert.org source = File(source) 1008233Snate@binkert.org 1018233Snate@binkert.org source = PySourceFile(package, source) 10212302Sgabeblack@google.com py_sources.append(source) 10312302Sgabeblack@google.com 1046143Snate@binkert.orgsim_objects_fixed = False 10512302Sgabeblack@google.comsim_object_modfiles = set() 10612302Sgabeblack@google.comdef SimObject(source): 10712302Sgabeblack@google.com '''Add a SimObject python file as a python source object and add 10812302Sgabeblack@google.com it to a list of sim object modules''' 10912302Sgabeblack@google.com 11012302Sgabeblack@google.com if sim_objects_fixed: 11112302Sgabeblack@google.com raise AttributeError, "Too late to call SimObject now." 11212302Sgabeblack@google.com 11312302Sgabeblack@google.com if not isinstance(source, SCons.Node.FS.File): 11412302Sgabeblack@google.com source = File(source) 1158233Snate@binkert.org 1166143Snate@binkert.org PySource('m5.objects', source) 1176143Snate@binkert.org modfile = basename(str(source)) 1186143Snate@binkert.org assert modfile.endswith('.py') 1196143Snate@binkert.org modname = modfile[:-3] 1206143Snate@binkert.org sim_object_modfiles.add(modname) 1216143Snate@binkert.org 1226143Snate@binkert.orgswig_sources = [] 1236143Snate@binkert.orgdef SwigSource(package, source): 1246143Snate@binkert.org '''Add a swig file to build''' 1257065Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 1266143Snate@binkert.org source = File(source) 1278233Snate@binkert.org val = source,package 1288233Snate@binkert.org swig_sources.append(val) 1298233Snate@binkert.org 1308233Snate@binkert.org# Children should have access 1318233Snate@binkert.orgExport('Source') 1328233Snate@binkert.orgExport('PySource') 1338233Snate@binkert.orgExport('SimObject') 1348233Snate@binkert.orgExport('SwigSource') 1358233Snate@binkert.org 1368233Snate@binkert.org######################################################################## 1378233Snate@binkert.org# 1388233Snate@binkert.org# Trace Flags 1398233Snate@binkert.org# 1408233Snate@binkert.orgall_flags = {} 1418233Snate@binkert.orgtrace_flags = [] 1428233Snate@binkert.orgdef TraceFlag(name, desc=''): 1438233Snate@binkert.org if name in all_flags: 1448233Snate@binkert.org raise AttributeError, "Flag %s already specified" % name 1458233Snate@binkert.org flag = (name, (), desc) 1468233Snate@binkert.org trace_flags.append(flag) 1478233Snate@binkert.org all_flags[name] = () 1486143Snate@binkert.org 1496143Snate@binkert.orgdef CompoundFlag(name, flags, desc=''): 1506143Snate@binkert.org if name in all_flags: 1516143Snate@binkert.org raise AttributeError, "Flag %s already specified" % name 1526143Snate@binkert.org 1536143Snate@binkert.org compound = tuple(flags) 1549982Satgutier@umich.edu for flag in compound: 1556143Snate@binkert.org if flag not in all_flags: 15612302Sgabeblack@google.com raise AttributeError, "Trace flag %s not found" % flag 15712302Sgabeblack@google.com if all_flags[flag]: 15812302Sgabeblack@google.com raise AttributeError, \ 15912302Sgabeblack@google.com "Compound flag can't point to another compound flag" 16012302Sgabeblack@google.com 16112302Sgabeblack@google.com flag = (name, compound, desc) 16212302Sgabeblack@google.com trace_flags.append(flag) 16312302Sgabeblack@google.com all_flags[name] = compound 16411983Sgabeblack@google.com 16511983Sgabeblack@google.comExport('TraceFlag') 16611983Sgabeblack@google.comExport('CompoundFlag') 16712302Sgabeblack@google.com 16812302Sgabeblack@google.com######################################################################## 16912302Sgabeblack@google.com# 17012302Sgabeblack@google.com# Set some compiler variables 17112302Sgabeblack@google.com# 17212302Sgabeblack@google.com 17311983Sgabeblack@google.com# Include file paths are rooted in this directory. SCons will 1746143Snate@binkert.org# automatically expand '.' to refer to both the source directory and 17512305Sgabeblack@google.com# the corresponding build directory to pick up generated include 17612302Sgabeblack@google.com# files. 17712302Sgabeblack@google.comenv.Append(CPPPATH=Dir('.')) 17812302Sgabeblack@google.com 1796143Snate@binkert.org# Add a flag defining what THE_ISA should be for all compilation 1806143Snate@binkert.orgenv.Append(CPPDEFINES=[('THE_ISA','%s_ISA' % env['TARGET_ISA'].upper())]) 1816143Snate@binkert.org 1825522Snate@binkert.org######################################################################## 1836143Snate@binkert.org# 1846143Snate@binkert.org# Walk the tree and execute all SConscripts 1856143Snate@binkert.org# 1869982Satgutier@umich.edusrcdir = env['SRCDIR'] 18712302Sgabeblack@google.comfor root, dirs, files in os.walk(srcdir, topdown=True): 18812302Sgabeblack@google.com if root == srcdir: 18912302Sgabeblack@google.com # we don't want to recurse back into this SConscript 1906143Snate@binkert.org continue 1916143Snate@binkert.org 1926143Snate@binkert.org if 'SConscript' in files: 1936143Snate@binkert.org # strip off the srcdir part since scons will try to find the 1945522Snate@binkert.org # script in the build directory 1955522Snate@binkert.org base = root[len(srcdir) + 1:] 1965522Snate@binkert.org SConscript(joinpath(base, 'SConscript')) 1975522Snate@binkert.org 1985604Snate@binkert.orgextra_string = env['EXTRAS'] 1995604Snate@binkert.orgif extra_string and extra_string != '' and not extra_string.isspace(): 2006143Snate@binkert.org for extra in extra_string.split(':'): 2016143Snate@binkert.org extra = os.path.expanduser(extra) 2024762Snate@binkert.org extra = os.path.normpath(extra) 2034762Snate@binkert.org env.Append(CPPPATH=[Dir(extra)]) 2046143Snate@binkert.org for root, dirs, files in os.walk(extra, topdown=True): 2056727Ssteve.reinhardt@amd.com if 'SConscript' in files: 2066727Ssteve.reinhardt@amd.com subdir = root[len(os.path.dirname(extra))+1:] 2076727Ssteve.reinhardt@amd.com build_dir = joinpath(env['BUILDDIR'], subdir) 2084762Snate@binkert.org SConscript(joinpath(root, 'SConscript'), build_dir=build_dir) 2096143Snate@binkert.org 2106143Snate@binkert.orgfor opt in env.ExportOptions: 2116143Snate@binkert.org env.ConfigFile(opt) 2126143Snate@binkert.org 2136727Ssteve.reinhardt@amd.com######################################################################## 2146143Snate@binkert.org# 2157674Snate@binkert.org# Prevent any SimObjects from being added after this point, they 2167674Snate@binkert.org# should all have been added in the SConscripts above 2175604Snate@binkert.org# 2186143Snate@binkert.orgsim_objects_fixed = True 2196143Snate@binkert.org 2206143Snate@binkert.org######################################################################## 2214762Snate@binkert.org# 2226143Snate@binkert.org# Manually turn python/generate.py into a python module and import it 2234762Snate@binkert.org# 2244762Snate@binkert.orggenerate_file = File('python/generate.py') 2254762Snate@binkert.orggenerate_module = imp.new_module('generate') 2266143Snate@binkert.orgsys.modules['generate'] = generate_module 2276143Snate@binkert.orgexec file(generate_file.srcnode().abspath, 'r') in generate_module.__dict__ 2284762Snate@binkert.org 22912302Sgabeblack@google.com######################################################################## 23012302Sgabeblack@google.com# 2318233Snate@binkert.org# build a generate 23212302Sgabeblack@google.com# 2336143Snate@binkert.orgfrom generate import Generate 2346143Snate@binkert.orgoptionDict = dict([(opt, env[opt]) for opt in env.ExportOptions]) 2354762Snate@binkert.orggenerate = Generate(py_sources, sim_object_modfiles, optionDict) 2366143Snate@binkert.orgm5 = generate.m5 2374762Snate@binkert.org 2389396Sandreas.hansson@arm.com######################################################################## 2399396Sandreas.hansson@arm.com# 2409396Sandreas.hansson@arm.com# calculate extra dependencies 24112302Sgabeblack@google.com# 24212302Sgabeblack@google.commodule_depends = ["m5", "m5.SimObject", "m5.params"] 24312302Sgabeblack@google.commodule_depends = [ File(generate.py_modules[dep]) for dep in module_depends ] 2449396Sandreas.hansson@arm.comfile_depends = [ generate_file ] 2459396Sandreas.hansson@arm.comdepends = module_depends + file_depends 2469396Sandreas.hansson@arm.com 2479396Sandreas.hansson@arm.com######################################################################## 2489396Sandreas.hansson@arm.com# 2499396Sandreas.hansson@arm.com# Commands for the basic automatically generated python files 2509396Sandreas.hansson@arm.com# 2519930Sandreas.hansson@arm.com 2529930Sandreas.hansson@arm.com# Generate a file with all of the compile options in it 2539396Sandreas.hansson@arm.comenv.Command('python/m5/defines.py', Value(optionDict), 2548235Snate@binkert.org generate.makeDefinesPyFile) 2558235Snate@binkert.orgPySource('m5', 'python/m5/defines.py') 2566143Snate@binkert.org 2578235Snate@binkert.org# Generate a file that wraps the basic top level files 2589003SAli.Saidi@ARM.comenv.Command('python/m5/info.py', 2598235Snate@binkert.org [ '#/AUTHORS', '#/LICENSE', '#/README', '#/RELEASE_NOTES' ], 2608235Snate@binkert.org generate.makeInfoPyFile) 26112302Sgabeblack@google.comPySource('m5', 'python/m5/info.py') 2628235Snate@binkert.org 26312302Sgabeblack@google.com# Generate an __init__.py file for the objects package 2648235Snate@binkert.orgenv.Command('python/m5/objects/__init__.py', 2658235Snate@binkert.org [ Value(o) for o in sort_list(sim_object_modfiles) ], 26612302Sgabeblack@google.com generate.makeObjectsInitFile) 2678235Snate@binkert.orgPySource('m5.objects', 'python/m5/objects/__init__.py') 2688235Snate@binkert.org 2698235Snate@binkert.org######################################################################## 2708235Snate@binkert.org# 2719003SAli.Saidi@ARM.com# Create all of the SimObject param headers and enum headers 2728235Snate@binkert.org# 2735584Snate@binkert.org 2744382Sbinkertn@umich.edu# Generate all of the SimObject param struct header files 2754202Sbinkertn@umich.eduparams_hh_files = [] 2764382Sbinkertn@umich.edufor name,simobj in generate.sim_objects.iteritems(): 2774382Sbinkertn@umich.edu extra_deps = [ File(generate.py_modules[simobj.__module__]) ] 2789396Sandreas.hansson@arm.com 2795584Snate@binkert.org hh_file = File('params/%s.hh' % name) 2804382Sbinkertn@umich.edu params_hh_files.append(hh_file) 2814382Sbinkertn@umich.edu env.Command(hh_file, Value(name), generate.createSimObjectParam) 2824382Sbinkertn@umich.edu env.Depends(hh_file, depends + extra_deps) 2838232Snate@binkert.org 2845192Ssaidi@eecs.umich.edu# Generate any parameter header files needed 2858232Snate@binkert.orgfor name,param in generate.params.iteritems(): 2868232Snate@binkert.org if isinstance(param, m5.params.VectorParamDesc): 2878232Snate@binkert.org ext = 'vptype' 2885192Ssaidi@eecs.umich.edu else: 2898232Snate@binkert.org ext = 'ptype' 2905192Ssaidi@eecs.umich.edu 2915799Snate@binkert.org i_file = File('params/%s_%s.i' % (name, ext)) 2928232Snate@binkert.org env.Command(i_file, Value(name), generate.createSwigParam) 2935192Ssaidi@eecs.umich.edu env.Depends(i_file, depends) 2945192Ssaidi@eecs.umich.edu 2955192Ssaidi@eecs.umich.edu# Generate all enum header files 2968232Snate@binkert.orgfor name,enum in generate.enums.iteritems(): 2975192Ssaidi@eecs.umich.edu extra_deps = [ File(generate.py_modules[enum.__module__]) ] 2988232Snate@binkert.org 2995192Ssaidi@eecs.umich.edu cc_file = File('enums/%s.cc' % name) 3005192Ssaidi@eecs.umich.edu env.Command(cc_file, Value(name), generate.createEnumStrings) 3015192Ssaidi@eecs.umich.edu env.Depends(cc_file, depends + extra_deps) 3025192Ssaidi@eecs.umich.edu Source(cc_file) 3034382Sbinkertn@umich.edu 3044382Sbinkertn@umich.edu hh_file = File('enums/%s.hh' % name) 3054382Sbinkertn@umich.edu env.Command(hh_file, Value(name), generate.createEnumParam) 3062667Sstever@eecs.umich.edu env.Depends(hh_file, depends + extra_deps) 3072667Sstever@eecs.umich.edu 3082667Sstever@eecs.umich.edu# Build the big monolithic swigged params module (wraps all SimObject 3092667Sstever@eecs.umich.edu# param structs and enum structs) 3102667Sstever@eecs.umich.eduparams_file = File('params/params.i') 3112667Sstever@eecs.umich.edunames = sort_list(generate.sim_objects.keys()) 3125742Snate@binkert.orgenv.Command(params_file, [ Value(v) for v in names ], 3135742Snate@binkert.org generate.buildParams) 3145742Snate@binkert.orgenv.Depends(params_file, params_hh_files + depends) 3155793Snate@binkert.orgSwigSource('m5.objects', params_file) 3168334Snate@binkert.org 3175793Snate@binkert.org# Build all swig modules 3185793Snate@binkert.orgswig_modules = [] 3195793Snate@binkert.orgfor source,package in swig_sources: 3204382Sbinkertn@umich.edu filename = str(source) 3214762Snate@binkert.org assert filename.endswith('.i') 3225344Sstever@gmail.com 3234382Sbinkertn@umich.edu base = '.'.join(filename.split('.')[:-1]) 3245341Sstever@gmail.com module = basename(base) 3255742Snate@binkert.org cc_file = base + '_wrap.cc' 3265742Snate@binkert.org py_file = base + '.py' 3275742Snate@binkert.org 3285742Snate@binkert.org env.Command([cc_file, py_file], source, 3295742Snate@binkert.org '$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} ' 3304762Snate@binkert.org '-o ${TARGETS[0]} $SOURCES') 3315742Snate@binkert.org env.Depends(py_file, source) 3325742Snate@binkert.org env.Depends(cc_file, source) 33311984Sgabeblack@google.com 3347722Sgblack@eecs.umich.edu swig_modules.append(Value(module)) 3355742Snate@binkert.org Source(cc_file) 3365742Snate@binkert.org PySource(package, py_file) 3375742Snate@binkert.org 3389930Sandreas.hansson@arm.com# Generate the main swig init file 3399930Sandreas.hansson@arm.comenv.Command('swig/init.cc', swig_modules, generate.makeSwigInit) 3409930Sandreas.hansson@arm.comSource('swig/init.cc') 3419930Sandreas.hansson@arm.com 3429930Sandreas.hansson@arm.com# Generate traceflags.py 3435742Snate@binkert.orgflags = [ Value(f) for f in trace_flags ] 3448242Sbradley.danofsky@amd.comenv.Command('base/traceflags.py', flags, generate.traceFlagsPy) 3458242Sbradley.danofsky@amd.comPySource('m5', 'base/traceflags.py') 3468242Sbradley.danofsky@amd.com 3478242Sbradley.danofsky@amd.comenv.Command('base/traceflags.hh', flags, generate.traceFlagsHH) 3485341Sstever@gmail.comenv.Command('base/traceflags.cc', flags, generate.traceFlagsCC) 3495742Snate@binkert.orgSource('base/traceflags.cc') 3507722Sgblack@eecs.umich.edu 3514773Snate@binkert.org# Build the zip file 3526108Snate@binkert.orgpy_compiled = [] 3531858SN/Apy_zip_depends = [] 3541085SN/Afor source in py_sources: 3556658Snate@binkert.org env.Command(source.compiled, source.source, generate.compilePyFile) 3566658Snate@binkert.org py_compiled.append(source.compiled) 3577673Snate@binkert.org 3586658Snate@binkert.org # make the zipfile depend on the archive name so that the archive 3596658Snate@binkert.org # is rebuilt if the name changes 36011308Santhony.gutierrez@amd.com py_zip_depends.append(Value(source.arcname)) 3616658Snate@binkert.org 36211308Santhony.gutierrez@amd.com# Add the zip file target to the environment. 3636658Snate@binkert.orgm5zip = File('m5py.zip') 3646658Snate@binkert.orgenv.Command(m5zip, py_compiled, generate.buildPyZip) 3657673Snate@binkert.orgenv.Depends(m5zip, py_zip_depends) 3667673Snate@binkert.org 3677673Snate@binkert.org######################################################################## 3687673Snate@binkert.org# 3697673Snate@binkert.org# Define binaries. Each different build type (debug, opt, etc.) gets 3707673Snate@binkert.org# a slightly different build environment. 3717673Snate@binkert.org# 37210467Sandreas.hansson@arm.com 3736658Snate@binkert.org# List of constructed environments to pass back to SConstruct 3747673Snate@binkert.orgenvList = [] 37510467Sandreas.hansson@arm.com 37610467Sandreas.hansson@arm.com# This function adds the specified sources to the given build 37710467Sandreas.hansson@arm.com# environment, and returns a list of all the corresponding SCons 37810467Sandreas.hansson@arm.com# Object nodes (including an extra one for date.cc). We explicitly 37910467Sandreas.hansson@arm.com# add the Object nodes so we can set up special dependencies for 38010467Sandreas.hansson@arm.com# date.cc. 38110467Sandreas.hansson@arm.comdef make_objs(sources, env): 38210467Sandreas.hansson@arm.com objs = [env.Object(s) for s in sources] 38310467Sandreas.hansson@arm.com # make date.cc depend on all other objects so it always gets 38410467Sandreas.hansson@arm.com # recompiled whenever anything else does 38510467Sandreas.hansson@arm.com date_obj = env.Object('base/date.cc') 3867673Snate@binkert.org env.Depends(date_obj, objs) 3877673Snate@binkert.org objs.append(date_obj) 3887673Snate@binkert.org return objs 3897673Snate@binkert.org 3907673Snate@binkert.org# Function to create a new build environment as clone of current 3919048SAli.Saidi@ARM.com# environment 'env' with modified object suffix and optional stripped 3927673Snate@binkert.org# binary. Additional keyword arguments are appended to corresponding 3937673Snate@binkert.org# build environment vars. 3947673Snate@binkert.orgdef makeEnv(label, objsfx, strip = False, **kwargs): 3957673Snate@binkert.org newEnv = env.Copy(OBJSUFFIX=objsfx) 3966658Snate@binkert.org newEnv.Label = label 3977756SAli.Saidi@ARM.com newEnv.Append(**kwargs) 3987816Ssteve.reinhardt@amd.com exe = 'm5.' + label # final executable 3996658Snate@binkert.org bin = exe + '.bin' # executable w/o appended Python zip archive 40011308Santhony.gutierrez@amd.com newEnv.Program(bin, make_objs(cc_sources, newEnv)) 40111308Santhony.gutierrez@amd.com if strip: 40211308Santhony.gutierrez@amd.com stripped_bin = bin + '.stripped' 40311308Santhony.gutierrez@amd.com if sys.platform == 'sunos5': 40411308Santhony.gutierrez@amd.com cmd = 'cp $SOURCE $TARGET; strip $TARGET' 40511308Santhony.gutierrez@amd.com else: 40611308Santhony.gutierrez@amd.com cmd = 'strip $SOURCE -o $TARGET' 40711308Santhony.gutierrez@amd.com newEnv.Command(stripped_bin, bin, cmd) 40811308Santhony.gutierrez@amd.com bin = stripped_bin 40911308Santhony.gutierrez@amd.com targets = newEnv.Concat(exe, [bin, 'm5py.zip']) 41011308Santhony.gutierrez@amd.com newEnv.M5Binary = targets[0] 41111308Santhony.gutierrez@amd.com envList.append(newEnv) 41211308Santhony.gutierrez@amd.com 41311308Santhony.gutierrez@amd.com# Debug binary 41411308Santhony.gutierrez@amd.comccflags = {} 41511308Santhony.gutierrez@amd.comif env['GCC']: 41611308Santhony.gutierrez@amd.com if sys.platform == 'sunos5': 41711308Santhony.gutierrez@amd.com ccflags['debug'] = '-gstabs+' 41811308Santhony.gutierrez@amd.com else: 41911308Santhony.gutierrez@amd.com ccflags['debug'] = '-ggdb3' 42011308Santhony.gutierrez@amd.com ccflags['opt'] = '-g -O3' 42111308Santhony.gutierrez@amd.com ccflags['fast'] = '-O3' 42211308Santhony.gutierrez@amd.com ccflags['prof'] = '-O3 -g -pg' 42311308Santhony.gutierrez@amd.comelif env['SUNCC']: 42411308Santhony.gutierrez@amd.com ccflags['debug'] = '-g0' 42511308Santhony.gutierrez@amd.com ccflags['opt'] = '-g -O' 42611308Santhony.gutierrez@amd.com ccflags['fast'] = '-fast' 42711308Santhony.gutierrez@amd.com ccflags['prof'] = '-fast -g -pg' 42811308Santhony.gutierrez@amd.comelif env['ICC']: 42911308Santhony.gutierrez@amd.com ccflags['debug'] = '-g -O0' 43011308Santhony.gutierrez@amd.com ccflags['opt'] = '-g -O' 43111308Santhony.gutierrez@amd.com ccflags['fast'] = '-fast' 43211308Santhony.gutierrez@amd.com ccflags['prof'] = '-fast -g -pg' 43311308Santhony.gutierrez@amd.comelse: 43411308Santhony.gutierrez@amd.com print 'Unknown compiler, please fix compiler options' 43511308Santhony.gutierrez@amd.com Exit(1) 43611308Santhony.gutierrez@amd.com 43711308Santhony.gutierrez@amd.commakeEnv('debug', '.do', 43811308Santhony.gutierrez@amd.com CCFLAGS = Split(ccflags['debug']), 43911308Santhony.gutierrez@amd.com CPPDEFINES = ['DEBUG', 'TRACING_ON=1']) 44011308Santhony.gutierrez@amd.com 44111308Santhony.gutierrez@amd.com# Optimized binary 44211308Santhony.gutierrez@amd.commakeEnv('opt', '.o', 44311308Santhony.gutierrez@amd.com CCFLAGS = Split(ccflags['opt']), 44411308Santhony.gutierrez@amd.com CPPDEFINES = ['TRACING_ON=1']) 4454382Sbinkertn@umich.edu 4464382Sbinkertn@umich.edu# "Fast" binary 4474762Snate@binkert.orgmakeEnv('fast', '.fo', strip = True, 4484762Snate@binkert.org CCFLAGS = Split(ccflags['fast']), 4494762Snate@binkert.org CPPDEFINES = ['NDEBUG', 'TRACING_ON=0']) 4506654Snate@binkert.org 4516654Snate@binkert.org# Profiled binary 4525517Snate@binkert.orgmakeEnv('prof', '.po', 4535517Snate@binkert.org CCFLAGS = Split(ccflags['prof']), 4545517Snate@binkert.org CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 4555517Snate@binkert.org LINKFLAGS = '-pg') 4565517Snate@binkert.org 4575517Snate@binkert.orgReturn('envList') 4585517Snate@binkert.org