SConscript revision 4773
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): 628233Snate@binkert.org filename = str(source) 638233Snate@binkert.org pyname = basename(filename) 648233Snate@binkert.org assert pyname.endswith('.py') 658233Snate@binkert.org name = pyname[:-3] 668233Snate@binkert.org path = package.split('.') 678334Snate@binkert.org modpath = path 688334Snate@binkert.org if name != '__init__': 6910453SAndrew.Bardsley@arm.com modpath += [name] 7010453SAndrew.Bardsley@arm.com modpath = '.'.join(modpath) 718233Snate@binkert.org 728233Snate@binkert.org arcpath = package.split('.') + [ pyname + 'c' ] 738233Snate@binkert.org arcname = joinpath(*arcpath) 748233Snate@binkert.org 758233Snate@binkert.org self.source = source 768233Snate@binkert.org self.pyname = pyname 7711983Sgabeblack@google.com self.srcpath = source.srcnode().abspath 7811983Sgabeblack@google.com self.package = package 7911983Sgabeblack@google.com self.modpath = modpath 8011983Sgabeblack@google.com self.arcname = arcname 8111983Sgabeblack@google.com self.filename = filename 8211983Sgabeblack@google.com self.compiled = File(filename + 'c') 8311983Sgabeblack@google.com 8411983Sgabeblack@google.com######################################################################## 8511983Sgabeblack@google.com# Code for adding source files of various types 8611983Sgabeblack@google.com# 8711983Sgabeblack@google.comcc_sources = [] 886143Snate@binkert.orgdef Source(source): 898233Snate@binkert.org '''Add a C/C++ source file to the build''' 908233Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 918233Snate@binkert.org source = File(source) 926143Snate@binkert.org 936143Snate@binkert.org cc_sources.append(source) 946143Snate@binkert.org 9511308Santhony.gutierrez@amd.compy_sources = [] 968233Snate@binkert.orgdef PySource(package, source): 978233Snate@binkert.org '''Add a python source file to the named package''' 988233Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 9911983Sgabeblack@google.com source = File(source) 10011983Sgabeblack@google.com 1014762Snate@binkert.org source = PySourceFile(package, source) 1026143Snate@binkert.org py_sources.append(source) 1038233Snate@binkert.org 1048233Snate@binkert.orgsim_objects_fixed = False 1058233Snate@binkert.orgsim_object_modfiles = set() 1068233Snate@binkert.orgdef SimObject(source): 1078233Snate@binkert.org '''Add a SimObject python file as a python source object and add 1086143Snate@binkert.org it to a list of sim object modules''' 1098233Snate@binkert.org 1108233Snate@binkert.org if sim_objects_fixed: 1118233Snate@binkert.org raise AttributeError, "Too late to call SimObject now." 1128233Snate@binkert.org 1136143Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 1146143Snate@binkert.org source = File(source) 1156143Snate@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 1227065Snate@binkert.orgswig_sources = [] 1236143Snate@binkert.orgdef SwigSource(package, source): 1248233Snate@binkert.org '''Add a swig file to build''' 1258233Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 1268233Snate@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# Set some compiler variables 1398233Snate@binkert.org# 1408233Snate@binkert.org 1418233Snate@binkert.org# Include file paths are rooted in this directory. SCons will 1428233Snate@binkert.org# automatically expand '.' to refer to both the source directory and 1438233Snate@binkert.org# the corresponding build directory to pick up generated include 1448233Snate@binkert.org# files. 1458233Snate@binkert.orgenv.Append(CPPPATH=Dir('.')) 1468233Snate@binkert.org 1478233Snate@binkert.org# Add a flag defining what THE_ISA should be for all compilation 1488233Snate@binkert.orgenv.Append(CPPDEFINES=[('THE_ISA','%s_ISA' % env['TARGET_ISA'].upper())]) 1498233Snate@binkert.org 1508233Snate@binkert.org######################################################################## 1518233Snate@binkert.org# 1528233Snate@binkert.org# Walk the tree and execute all SConscripts 1538233Snate@binkert.org# 1548233Snate@binkert.orgsrcdir = env['SRCDIR'] 1556143Snate@binkert.orgfor root, dirs, files in os.walk(srcdir, topdown=True): 1566143Snate@binkert.org if root == srcdir: 1576143Snate@binkert.org # we don't want to recurse back into this SConscript 1586143Snate@binkert.org continue 1596143Snate@binkert.org 1606143Snate@binkert.org if 'SConscript' in files: 1619982Satgutier@umich.edu # strip off the srcdir part since scons will try to find the 16210196SCurtis.Dunham@arm.com # script in the build directory 16310196SCurtis.Dunham@arm.com base = root[len(srcdir) + 1:] 16410196SCurtis.Dunham@arm.com SConscript(joinpath(base, 'SConscript')) 16510196SCurtis.Dunham@arm.com 16610196SCurtis.Dunham@arm.comfor extra in env['EXTRAS'].split(':'): 16710196SCurtis.Dunham@arm.com extra = os.path.expanduser(extra) 16810196SCurtis.Dunham@arm.com env.Append(CPPPATH=[Dir(extra)]) 16910196SCurtis.Dunham@arm.com for root, dirs, files in os.walk(extra, topdown=True): 1706143Snate@binkert.org if 'SConscript' in files: 17111983Sgabeblack@google.com subdir = root[len(os.path.dirname(extra))+1:] 17211983Sgabeblack@google.com build_dir = joinpath(env['BUILDDIR'], subdir) 17311983Sgabeblack@google.com SConscript(joinpath(root, 'SConscript'), build_dir=build_dir) 17411983Sgabeblack@google.com 17511983Sgabeblack@google.comfor opt in env.ExportOptions: 17611983Sgabeblack@google.com env.ConfigFile(opt) 17711983Sgabeblack@google.com 17811983Sgabeblack@google.com######################################################################## 17911983Sgabeblack@google.com# 1806143Snate@binkert.org# Prevent any SimObjects from being added after this point, they 18111988Sandreas.sandberg@arm.com# should all have been added in the SConscripts above 1828233Snate@binkert.org# 1838233Snate@binkert.orgsim_objects_fixed = True 1846143Snate@binkert.org 1858945Ssteve.reinhardt@amd.com######################################################################## 1866143Snate@binkert.org# 18711983Sgabeblack@google.com# Manually turn python/generate.py into a python module and import it 18811983Sgabeblack@google.com# 1896143Snate@binkert.orggenerate_file = File('python/generate.py') 1906143Snate@binkert.orggenerate_module = imp.new_module('generate') 1915522Snate@binkert.orgsys.modules['generate'] = generate_module 1926143Snate@binkert.orgexec file(generate_file.srcnode().abspath, 'r') in generate_module.__dict__ 1936143Snate@binkert.org 1946143Snate@binkert.org######################################################################## 1959982Satgutier@umich.edu# 1968233Snate@binkert.org# build a generate 1978233Snate@binkert.org# 1988233Snate@binkert.orgfrom generate import Generate 1996143Snate@binkert.orgoptionDict = dict([(opt, env[opt]) for opt in env.ExportOptions]) 2006143Snate@binkert.orggenerate = Generate(py_sources, sim_object_modfiles, optionDict) 2016143Snate@binkert.orgm5 = generate.m5 2026143Snate@binkert.org 2035522Snate@binkert.org######################################################################## 2045522Snate@binkert.org# 2055522Snate@binkert.org# calculate extra dependencies 2065522Snate@binkert.org# 2075604Snate@binkert.orgmodule_depends = ["m5", "m5.SimObject", "m5.params"] 2085604Snate@binkert.orgmodule_depends = [ File(generate.py_modules[dep]) for dep in module_depends ] 2096143Snate@binkert.orgfile_depends = [ generate_file ] 2106143Snate@binkert.orgdepends = module_depends + file_depends 2114762Snate@binkert.org 2124762Snate@binkert.org######################################################################## 2136143Snate@binkert.org# 2146727Ssteve.reinhardt@amd.com# Commands for the basic automatically generated python files 2156727Ssteve.reinhardt@amd.com# 2166727Ssteve.reinhardt@amd.com 2174762Snate@binkert.org# Generate a file with all of the compile options in it 2186143Snate@binkert.orgenv.Command('python/m5/defines.py', Value(optionDict), 2196143Snate@binkert.org generate.makeDefinesPyFile) 2206143Snate@binkert.orgPySource('m5', 'python/m5/defines.py') 2216143Snate@binkert.org 2226727Ssteve.reinhardt@amd.com# Generate a file that wraps the basic top level files 2236143Snate@binkert.orgenv.Command('python/m5/info.py', 2247674Snate@binkert.org [ '#/AUTHORS', '#/LICENSE', '#/README', '#/RELEASE_NOTES' ], 2257674Snate@binkert.org generate.makeInfoPyFile) 2265604Snate@binkert.orgPySource('m5', 'python/m5/info.py') 2276143Snate@binkert.org 2286143Snate@binkert.org# Generate an __init__.py file for the objects package 2296143Snate@binkert.orgenv.Command('python/m5/objects/__init__.py', 2304762Snate@binkert.org [ Value(o) for o in sort_list(sim_object_modfiles) ], 2316143Snate@binkert.org generate.makeObjectsInitFile) 2324762Snate@binkert.orgPySource('m5.objects', 'python/m5/objects/__init__.py') 2334762Snate@binkert.org 2344762Snate@binkert.org######################################################################## 2356143Snate@binkert.org# 2366143Snate@binkert.org# Create all of the SimObject param headers and enum headers 2374762Snate@binkert.org# 2388233Snate@binkert.org 2398233Snate@binkert.org# Generate all of the SimObject param struct header files 2408233Snate@binkert.orgparams_hh_files = [] 2418233Snate@binkert.orgfor name,simobj in generate.sim_objects.iteritems(): 2426143Snate@binkert.org extra_deps = [ File(generate.py_modules[simobj.__module__]) ] 2436143Snate@binkert.org 2444762Snate@binkert.org hh_file = File('params/%s.hh' % name) 2456143Snate@binkert.org params_hh_files.append(hh_file) 2464762Snate@binkert.org env.Command(hh_file, Value(name), generate.createSimObjectParam) 2479396Sandreas.hansson@arm.com env.Depends(hh_file, depends + extra_deps) 2489396Sandreas.hansson@arm.com 2499396Sandreas.hansson@arm.com# Generate any parameter header files needed 2509396Sandreas.hansson@arm.comfor name,param in generate.params.iteritems(): 2519396Sandreas.hansson@arm.com if isinstance(param, m5.params.VectorParamDesc): 2529396Sandreas.hansson@arm.com ext = 'vptype' 2539396Sandreas.hansson@arm.com else: 2549396Sandreas.hansson@arm.com ext = 'ptype' 2559396Sandreas.hansson@arm.com 2569396Sandreas.hansson@arm.com i_file = File('params/%s_%s.i' % (name, ext)) 2579396Sandreas.hansson@arm.com env.Command(i_file, Value(name), generate.createSwigParam) 2589396Sandreas.hansson@arm.com env.Depends(i_file, depends) 2599396Sandreas.hansson@arm.com 2609930Sandreas.hansson@arm.com# Generate all enum header files 2619930Sandreas.hansson@arm.comfor name,enum in generate.enums.iteritems(): 2629396Sandreas.hansson@arm.com extra_deps = [ File(generate.py_modules[enum.__module__]) ] 2638235Snate@binkert.org 2648235Snate@binkert.org cc_file = File('enums/%s.cc' % name) 2656143Snate@binkert.org env.Command(cc_file, Value(name), generate.createEnumStrings) 2668235Snate@binkert.org env.Depends(cc_file, depends + extra_deps) 2679003SAli.Saidi@ARM.com Source(cc_file) 2688235Snate@binkert.org 2698235Snate@binkert.org hh_file = File('enums/%s.hh' % name) 2708235Snate@binkert.org env.Command(hh_file, Value(name), generate.createEnumParam) 2718235Snate@binkert.org env.Depends(hh_file, depends + extra_deps) 2728235Snate@binkert.org 2738235Snate@binkert.org# Build the big monolithic swigged params module (wraps all SimObject 2748235Snate@binkert.org# param structs and enum structs) 2758235Snate@binkert.orgparams_file = File('params/params.i') 2768235Snate@binkert.orgnames = sort_list(generate.sim_objects.keys()) 2778235Snate@binkert.orgenv.Command(params_file, [ Value(v) for v in names ], 2788235Snate@binkert.org generate.buildParams) 2798235Snate@binkert.orgenv.Depends(params_file, params_hh_files + depends) 2808235Snate@binkert.orgSwigSource('m5.objects', params_file) 2818235Snate@binkert.org 2829003SAli.Saidi@ARM.com# Build all swig modules 2838235Snate@binkert.orgswig_modules = [] 2845584Snate@binkert.orgfor source,package in swig_sources: 2854382Sbinkertn@umich.edu filename = str(source) 2864202Sbinkertn@umich.edu assert filename.endswith('.i') 2874382Sbinkertn@umich.edu 2884382Sbinkertn@umich.edu base = '.'.join(filename.split('.')[:-1]) 2899396Sandreas.hansson@arm.com module = basename(base) 2905584Snate@binkert.org cc_file = base + '_wrap.cc' 2914382Sbinkertn@umich.edu py_file = base + '.py' 2924382Sbinkertn@umich.edu 2934382Sbinkertn@umich.edu env.Command([cc_file, py_file], source, 2948232Snate@binkert.org '$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} ' 2955192Ssaidi@eecs.umich.edu '-o ${TARGETS[0]} $SOURCES') 2968232Snate@binkert.org env.Depends(py_file, source) 2978232Snate@binkert.org env.Depends(cc_file, source) 2988232Snate@binkert.org 2995192Ssaidi@eecs.umich.edu swig_modules.append(Value(module)) 3008232Snate@binkert.org Source(cc_file) 3015192Ssaidi@eecs.umich.edu PySource(package, py_file) 3025799Snate@binkert.org 3038232Snate@binkert.org# Generate the main swig init file 3045192Ssaidi@eecs.umich.eduenv.Command('swig/init.cc', swig_modules, generate.makeSwigInit) 3055192Ssaidi@eecs.umich.eduSource('swig/init.cc') 3065192Ssaidi@eecs.umich.edu 3078232Snate@binkert.org# Build the zip file 3085192Ssaidi@eecs.umich.edupy_compiled = [] 3098232Snate@binkert.orgpy_zip_depends = [] 3105192Ssaidi@eecs.umich.edufor source in py_sources: 3115192Ssaidi@eecs.umich.edu env.Command(source.compiled, source.source, generate.compilePyFile) 3125192Ssaidi@eecs.umich.edu py_compiled.append(source.compiled) 3135192Ssaidi@eecs.umich.edu 3144382Sbinkertn@umich.edu # make the zipfile depend on the archive name so that the archive 3154382Sbinkertn@umich.edu # is rebuilt if the name changes 3164382Sbinkertn@umich.edu py_zip_depends.append(Value(source.arcname)) 3172667Sstever@eecs.umich.edu 3182667Sstever@eecs.umich.edu# Add the zip file target to the environment. 3192667Sstever@eecs.umich.edum5zip = File('m5py.zip') 3202667Sstever@eecs.umich.eduenv.Command(m5zip, py_compiled, generate.buildPyZip) 3212667Sstever@eecs.umich.eduenv.Depends(m5zip, py_zip_depends) 3222667Sstever@eecs.umich.edu 3235742Snate@binkert.org######################################################################## 3245742Snate@binkert.org# 3255742Snate@binkert.org# Define binaries. Each different build type (debug, opt, etc.) gets 3265793Snate@binkert.org# a slightly different build environment. 3278334Snate@binkert.org# 3285793Snate@binkert.org 3295793Snate@binkert.org# List of constructed environments to pass back to SConstruct 3305793Snate@binkert.orgenvList = [] 3314382Sbinkertn@umich.edu 3324762Snate@binkert.org# This function adds the specified sources to the given build 3335344Sstever@gmail.com# environment, and returns a list of all the corresponding SCons 3344382Sbinkertn@umich.edu# Object nodes (including an extra one for date.cc). We explicitly 3355341Sstever@gmail.com# add the Object nodes so we can set up special dependencies for 3365742Snate@binkert.org# date.cc. 3375742Snate@binkert.orgdef make_objs(sources, env): 3385742Snate@binkert.org objs = [env.Object(s) for s in sources] 3395742Snate@binkert.org # make date.cc depend on all other objects so it always gets 3405742Snate@binkert.org # recompiled whenever anything else does 3414762Snate@binkert.org date_obj = env.Object('base/date.cc') 3425742Snate@binkert.org env.Depends(date_obj, objs) 3435742Snate@binkert.org objs.append(date_obj) 34411984Sgabeblack@google.com return objs 3457722Sgblack@eecs.umich.edu 3465742Snate@binkert.org# Function to create a new build environment as clone of current 3475742Snate@binkert.org# environment 'env' with modified object suffix and optional stripped 3485742Snate@binkert.org# binary. Additional keyword arguments are appended to corresponding 3499930Sandreas.hansson@arm.com# build environment vars. 3509930Sandreas.hansson@arm.comdef makeEnv(label, objsfx, strip = False, **kwargs): 3519930Sandreas.hansson@arm.com newEnv = env.Copy(OBJSUFFIX=objsfx) 3529930Sandreas.hansson@arm.com newEnv.Label = label 3539930Sandreas.hansson@arm.com newEnv.Append(**kwargs) 3545742Snate@binkert.org exe = 'm5.' + label # final executable 3558242Sbradley.danofsky@amd.com bin = exe + '.bin' # executable w/o appended Python zip archive 3568242Sbradley.danofsky@amd.com newEnv.Program(bin, make_objs(cc_sources, newEnv)) 3578242Sbradley.danofsky@amd.com if strip: 3588242Sbradley.danofsky@amd.com stripped_bin = bin + '.stripped' 3595341Sstever@gmail.com if sys.platform == 'sunos5': 3605742Snate@binkert.org cmd = 'cp $SOURCE $TARGET; strip $TARGET' 3617722Sgblack@eecs.umich.edu else: 3624773Snate@binkert.org cmd = 'strip $SOURCE -o $TARGET' 3636108Snate@binkert.org newEnv.Command(stripped_bin, bin, cmd) 3641858SN/A bin = stripped_bin 3651085SN/A targets = newEnv.Concat(exe, [bin, 'm5py.zip']) 3666658Snate@binkert.org newEnv.M5Binary = targets[0] 3676658Snate@binkert.org envList.append(newEnv) 3687673Snate@binkert.org 3696658Snate@binkert.org# Debug binary 3706658Snate@binkert.orgccflags = {} 37111308Santhony.gutierrez@amd.comif env['GCC']: 3726658Snate@binkert.org if sys.platform == 'sunos5': 37311308Santhony.gutierrez@amd.com ccflags['debug'] = '-gstabs+' 3746658Snate@binkert.org else: 3756658Snate@binkert.org ccflags['debug'] = '-ggdb3' 3767673Snate@binkert.org ccflags['opt'] = '-g -O3' 3777673Snate@binkert.org ccflags['fast'] = '-O3' 3787673Snate@binkert.org ccflags['prof'] = '-O3 -g -pg' 3797673Snate@binkert.orgelif env['SUNCC']: 3807673Snate@binkert.org ccflags['debug'] = '-g0' 3817673Snate@binkert.org ccflags['opt'] = '-g -O' 3827673Snate@binkert.org ccflags['fast'] = '-fast' 38310467Sandreas.hansson@arm.com ccflags['prof'] = '-fast -g -pg' 3846658Snate@binkert.orgelif env['ICC']: 3857673Snate@binkert.org ccflags['debug'] = '-g -O0' 38610467Sandreas.hansson@arm.com ccflags['opt'] = '-g -O' 38710467Sandreas.hansson@arm.com ccflags['fast'] = '-fast' 38810467Sandreas.hansson@arm.com ccflags['prof'] = '-fast -g -pg' 38910467Sandreas.hansson@arm.comelse: 39010467Sandreas.hansson@arm.com print 'Unknown compiler, please fix compiler options' 39110467Sandreas.hansson@arm.com Exit(1) 39210467Sandreas.hansson@arm.com 39310467Sandreas.hansson@arm.commakeEnv('debug', '.do', 39410467Sandreas.hansson@arm.com CCFLAGS = Split(ccflags['debug']), 39510467Sandreas.hansson@arm.com CPPDEFINES = ['DEBUG', 'TRACING_ON=1']) 39610467Sandreas.hansson@arm.com 3977673Snate@binkert.org# Optimized binary 3987673Snate@binkert.orgmakeEnv('opt', '.o', 3997673Snate@binkert.org CCFLAGS = Split(ccflags['opt']), 4007673Snate@binkert.org CPPDEFINES = ['TRACING_ON=1']) 4017673Snate@binkert.org 4029048SAli.Saidi@ARM.com# "Fast" binary 4037673Snate@binkert.orgmakeEnv('fast', '.fo', strip = True, 4047673Snate@binkert.org CCFLAGS = Split(ccflags['fast']), 4057673Snate@binkert.org CPPDEFINES = ['NDEBUG', 'TRACING_ON=0']) 4067673Snate@binkert.org 4076658Snate@binkert.org# Profiled binary 4087756SAli.Saidi@ARM.commakeEnv('prof', '.po', 4097816Ssteve.reinhardt@amd.com CCFLAGS = Split(ccflags['prof']), 4106658Snate@binkert.org CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 41111308Santhony.gutierrez@amd.com LINKFLAGS = '-pg') 41211308Santhony.gutierrez@amd.com 41311308Santhony.gutierrez@amd.comReturn('envList') 41411308Santhony.gutierrez@amd.com