SConstruct (9903:cb74b075186e) | SConstruct (9926:45a013c50eff) |
---|---|
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######################################################################## | 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######################################################################## |
193 194# export TERM so that clang reports errors in color |
|
193use_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH', 194 'LIBRARY_PATH', 'PATH', 'PKG_CONFIG_PATH', 'PYTHONPATH', | 195use_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH', 196 'LIBRARY_PATH', 'PATH', 'PKG_CONFIG_PATH', 'PYTHONPATH', |
195 'RANLIB', 'SWIG' ]) | 197 'RANLIB', 'SWIG', 'TERM' ]) |
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 --- | 198 199use_prefixes = [ 200 "M5", # M5 configuration (e.g., path to kernels) 201 "DISTCC_", # distcc (distributed compiler wrapper) configuration 202 "CCACHE_", # ccache (caching compiler wrapper) configuration 203 "CCC_", # clang static analyzer configuration 204 ] 205 --- 1070 unchanged lines hidden --- |