SConstruct revision 1065
1# -*- mode:python -*- 2 3# Copyright (c) 2004 The Regents of The University of Michigan 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions are 8# met: redistributions of source code must retain the above copyright 9# notice, this list of conditions and the following disclaimer; 10# redistributions in binary form must reproduce the above copyright 11# notice, this list of conditions and the following disclaimer in the 12# documentation and/or other materials provided with the distribution; 13# neither the name of the copyright holders nor the names of its 14# contributors may be used to endorse or promote products derived from 15# this software without specific prior written permission. 16# 17# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 29################################################### 30# 31# SCons top-level build description (SConstruct) file. 32# 33# To build M5, you need a directory with three things: 34# 1. A copy of this file (named SConstruct). 35# 2. A link named 'm5' to the top of the M5 simulator source tree. 36# 3. A link named 'ext' to the top of the M5 external source tree. 37# 38# Then type 'scons' to build the default configuration (see below), or 39# 'scons <CONFIG>/<binary>' to build some other configuration (e.g., 40# 'KERNEL/m5.opt' for the optimized full-system version). 41# 42################################################### 43 44# Python library imports 45import sys 46import os 47 48# The absolute path to the current directory (where this file lives). 49ROOT = Dir('.').abspath 50 51# Paths to the M5 and external source trees (local symlinks). 52SRCDIR = os.path.join(ROOT, 'm5') 53EXT_SRCDIR = os.path.join(ROOT, 'ext') 54 55# Check for 'm5' and 'ext' links, die if they don't exist. 56if not os.path.isdir(SRCDIR): 57 print "Error: '%s' must be a link to the M5 source tree." % SRCDIR 58 sys.exit(1) 59 60if not os.path.isdir('ext'): 61 print "Error: '%s' must be a link to the M5 external source tree." \ 62 % EXT_SRCDIR 63 sys.exit(1) 64 65 66################################################### 67# 68# Define Configurations 69# 70# The build system infers the build options from the subdirectory name 71# that the simulator is built under. The subdirectory name must be of 72# the form <CONFIG>[.<OPT>]*, where <CONFIG> is a base configuration 73# (e.g., ALPHA or KERNEL) and OPT is an option (e.g., MYSQL). The 74# following code defines the standard configurations and options. 75# Additional local configurations and options are read from the file 76# 'local_configs' if it exists. 77# 78# Each base configuration or option is defined in two steps: a 79# function that takes an SCons build environment and modifies it 80# appropriately for that config or option, and an entry in the 81# 'configs_map' or 'options_map' dictionary that maps the directory 82# name string to the function. (The directory names are all upper 83# case, by convention.) 84# 85################################################### 86 87# Base non-full-system Alpha ISA configuration. 88def AlphaConfig(env): 89 env.Replace(TARGET_ISA = 'alpha') 90 env.Append(CPPDEFINES = 'SS_COMPATIBLE_FP') 91 92# Base full-system configuration. 93def KernelConfig(env): 94 env.Replace(TARGET_ISA = 'alpha') 95 env.Replace(FULL_SYSTEM = True) 96 env.Append(CPPDEFINES = ['FULL_SYSTEM', 'SYSTEM_EV5']) 97 98# Base configurations map. 99configs_map = { 100 'ALPHA' : AlphaConfig, 101 'KERNEL' : KernelConfig 102 } 103 104# Enable detailed full-system binning. 105def MeasureOpt(env): 106 env.Replace(USE_MYSQL = True) 107 env.Append(CPPDEFINES = 'FS_MEASURE') 108 109# Enable MySql database output for stats. 110def MySqlOpt(env): 111 env.Replace(USE_MYSQL = True) 112 113# Disable FastAlloc object allocation. 114def NoFastAllocOpt(env): 115 env.Append(CPPDEFINES = 'NO_FAST_ALLOC') 116 117# Configuration options map. 118options_map = { 119 'MEASURE' : MeasureOpt, 120 'MYSQL' : MySqlOpt, 121 'NO_FAST_ALLOC' : NoFastAllocOpt 122 } 123 124# The 'local_configs' file can be used to define additional base 125# configurations and/or options without changing this file. 126if os.path.isfile('local_configs'): 127 SConscript('local_configs', exports = ['configs_map', 'options_map']) 128 129# This function parses a directory name of the form <CONFIG>[.<OPT>]* 130# and sets up the build environment appropriately. Returns True if 131# successful, False if the base config or any of the options were not 132# defined. 133def set_dir_options(dir, env): 134 parts = dir.split('.') 135 config = parts[0] 136 opts = parts[1:] 137 try: 138 configs_map[config](env) 139 map(lambda opt: options_map[opt](env), opts) 140 return True 141 except KeyError, key: 142 print "Config/option '%s' not found." % key 143 return False 144 145# Set the default configuration and binary. The default target (if 146# scons is invoked at the top level with no command-line targets) is 147# 'ALPHA/m5.debug'. If scons is invoked in a subdirectory with no 148# command-line targets, the configuration 149 150################################################### 151# 152# Figure out which configurations to set up. 153# 154# 155# It's prohibitive to do all the combinations of base configurations 156# and options, so we have to infer which ones the user wants. 157# 158# 1. If there are command-line targets, the configuration(s) are inferred 159# from the directories of those targets. If scons was invoked from a 160# subdirectory (using 'scons -u'), those targets have to be 161# interpreted relative to that subdirectory. 162# 163# 2. If there are no command-line targets, and scons was invoked from a 164# subdirectory (using 'scons -u'), the configuration is inferred from 165# the name of the subdirectory. 166# 167# 3. If there are no command-line targets and scons was invoked from 168# the root build directory, a default configuration is used. The 169# built-in default is ALPHA, but this can be overridden by setting the 170# M5_DEFAULT_CONFIG shell environment veriable. 171# 172# In cases 2 & 3, the specific file target defaults to 'm5.debug', but 173# this can be overridden by setting the M5_DEFAULT_BINARY shell 174# environment veriable. 175# 176################################################### 177 178# Find default configuration & binary. 179default_config = os.environ.get('M5_DEFAULT_CONFIG', 'ALPHA') 180default_binary = os.environ.get('M5_DEFAULT_BINARY', 'm5.debug') 181 182# Ask SCons which directory it was invoked from. If you invoke SCons 183# from a subdirectory you must use the '-u' flag. 184launch_dir = GetLaunchDir() 185 186# Build a list 'my_targets' of all the targets relative to ROOT. 187if launch_dir == ROOT: 188 # invoked from root build dir 189 if len(COMMAND_LINE_TARGETS) != 0: 190 # easy: use specified targets as is 191 my_targets = COMMAND_LINE_TARGETS 192 else: 193 # default target (ALPHA/m5.debug, unless overridden) 194 target = os.path.join(default_config, default_binary) 195 my_targets = [target] 196 Default(target) 197else: 198 # invoked from subdirectory 199 if not launch_dir.startswith(ROOT): 200 print "Error: launch dir (%s) not a subdirectory of ROOT (%s)!" \ 201 (launch_dir, ROOT) 202 sys.exit(1) 203 # make launch_dir relative to ROOT (strip ROOT plus slash off front) 204 launch_dir = launch_dir[len(ROOT)+1:] 205 if len(COMMAND_LINE_TARGETS) != 0: 206 # make specified targets relative to ROOT 207 my_targets = map(lambda x: os.path.join(launch_dir, x), 208 COMMAND_LINE_TARGETS) 209 else: 210 # build default binary (m5.debug, unless overridden) using the 211 # config inferred by the invocation directory (the first 212 # subdirectory after ROOT) 213 target = os.path.join(launch_dir.split('/')[0], default_binary) 214 my_targets = [target] 215 Default(target) 216 217# Normalize target paths (gets rid of '..' in the middle, etc.) 218my_targets = map(os.path.normpath, my_targets) 219 220# Generate a list of the unique configs that the collected targets reference. 221build_dirs = [] 222for t in my_targets: 223 dir = t.split('/')[0] 224 if dir not in build_dirs: 225 build_dirs.append(dir) 226 227################################################### 228# 229# Set up the default build environment. This environment is copied 230# and modified according to each selected configuration. 231# 232################################################### 233 234default_env = Environment(ENV = os.environ, # inherit user's enviroment vars 235 ROOT = ROOT, 236 SRCDIR = SRCDIR, 237 EXT_SRCDIR = EXT_SRCDIR, 238 CPPDEFINES = [], 239 FULL_SYSTEM = False, 240 USE_MYSQL = False) 241 242# For some reason, the CC and CXX variables don't get passed into the 243# environment correctly. This is probably some sort of scons bug that 244# will eventually be fixed. 245if os.environ.has_key('CC'): 246 default_env.Replace(CC=os.environ['CC']) 247 248if os.environ.has_key('CXX'): 249 default_env.Replace(CXX=os.environ['CXX']) 250 251# M5_EXT is used by isa_parser.py to find the PLY package. 252default_env.Append(ENV = { 'M5_EXT' : EXT_SRCDIR }) 253 254default_env.Append(CCFLAGS='-pipe') 255default_env.Append(CCFLAGS='-fno-strict-aliasing') 256default_env.Append(CCFLAGS=Split('-Wall -Wno-sign-compare -Werror -Wundef')) 257 258# libelf build is described in its own SConscript file. Using a 259# dictionary for exports lets us export "default_env" so the 260# SConscript will see it as "env". SConscript-global is the build in 261# build/libelf shared among all configs. 262default_env.SConscript('m5/libelf/SConscript-global', 263 exports={'env' : default_env}) 264 265################################################### 266# 267# Define build environments for selected configurations. 268# 269################################################### 270 271for build_dir in build_dirs: 272 # Make a copy of the default environment to use for this config. 273 env = default_env.Copy() 274 # Modify 'env' according to the build directory config. 275 print "Configuring options for directory '%s'." % build_dir 276 if not set_dir_options(build_dir, env): 277 print "Skipping directory '%s'." % build_dir 278 continue 279 280 # The m5/SConscript file sets up the build rules in 'env' according 281 # to the configured options. 282 SConscript('m5/SConscript', build_dir = build_dir, exports = 'env', 283 duplicate=0) 284 285 286################################################### 287# 288# Let SCons do its thing. At this point SCons will use the defined 289# build enviornments to build the requested targets. 290# 291################################################### 292 293