SConstruct (10066:06a33d872798) | SConstruct (10068:7867c5f28b90) |
---|---|
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 --- 179 unchanged lines hidden (view full) --- 188######################################################################## 189# 190# Set up the main build environment. 191# 192######################################################################## 193 194# export TERM so that clang reports errors in color 195use_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH', | 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 --- 179 unchanged lines hidden (view full) --- 188######################################################################## 189# 190# Set up the main build environment. 191# 192######################################################################## 193 194# export TERM so that clang reports errors in color 195use_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH', |
196 'LIBRARY_PATH', 'PATH', 'PKG_CONFIG_PATH', 'PYTHONPATH', 197 'RANLIB', 'SWIG', 'TERM' ]) | 196 'LIBRARY_PATH', 'PATH', 'PKG_CONFIG_PATH', 'PROTOC', 197 'PYTHONPATH', 'RANLIB', 'SWIG', 'TERM' ]) |
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 --- 1111 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 --- 1111 unchanged lines hidden --- |