Deleted Added
sdiff udiff text old ( 9903:cb74b075186e ) new ( 9926:45a013c50eff )
full compact
1# -*- mode:python -*-
2
3# Copyright (c) 2013 ARM Limited
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

--- 176 unchanged lines hidden (view full) ---

185
186termcap = get_termcap(GetOption('use_colors'))
187
188########################################################################
189#
190# Set up the main build environment.
191#
192########################################################################
193use_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH',
194 'LIBRARY_PATH', 'PATH', 'PKG_CONFIG_PATH', 'PYTHONPATH',
195 'RANLIB', 'SWIG' ])
196
197use_prefixes = [
198 "M5", # M5 configuration (e.g., path to kernels)
199 "DISTCC_", # distcc (distributed compiler wrapper) configuration
200 "CCACHE_", # ccache (caching compiler wrapper) configuration
201 "CCC_", # clang static analyzer configuration
202 ]
203

--- 1070 unchanged lines hidden ---