SConstruct (8879:347fc850752c) | SConstruct (8881:042d509574c1) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2011 Advanced Micro Devices, Inc. 4# Copyright (c) 2009 The Hewlett-Packard Development Company 5# Copyright (c) 2004-2005 The Regents of The University of Michigan 6# All rights reserved. 7# 8# Redistribution and use in source and binary forms, with or without --- 178 unchanged lines hidden (view full) --- 187 'PYTHONPATH', 'RANLIB' ]) 188 189use_env = {} 190for key,val in os.environ.iteritems(): 191 if key in use_vars or key.startswith("M5"): 192 use_env[key] = val 193 194main = Environment(ENV=use_env) | 1# -*- mode:python -*- 2 3# Copyright (c) 2011 Advanced Micro Devices, Inc. 4# Copyright (c) 2009 The Hewlett-Packard Development Company 5# Copyright (c) 2004-2005 The Regents of The University of Michigan 6# All rights reserved. 7# 8# Redistribution and use in source and binary forms, with or without --- 178 unchanged lines hidden (view full) --- 187 'PYTHONPATH', 'RANLIB' ]) 188 189use_env = {} 190for key,val in os.environ.iteritems(): 191 if key in use_vars or key.startswith("M5"): 192 use_env[key] = val 193 194main = Environment(ENV=use_env) |
195main.Decider('MD5-timestamp') 196main.SetOption('implicit_cache', 1) |
|
195main.root = Dir(".") # The current directory (where this file lives). 196main.srcdir = Dir("src") # The source directory 197 198# add useful python code PYTHONPATH so it can be used by subprocesses 199# as well 200main.AppendENVPath('PYTHONPATH', extra_python_paths) 201 202######################################################################## --- 837 unchanged lines hidden --- | 197main.root = Dir(".") # The current directory (where this file lives). 198main.srcdir = Dir("src") # The source directory 199 200# add useful python code PYTHONPATH so it can be used by subprocesses 201# as well 202main.AppendENVPath('PYTHONPATH', extra_python_paths) 203 204######################################################################## --- 837 unchanged lines hidden --- |