Deleted Added
sdiff udiff text old ( 9396:0c0ec9d87746 ) new ( 9416:4bf9aa9d40bb )
full compact
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

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

178#
179# Set up the main build environment.
180#
181########################################################################
182use_vars = set([ 'AS', 'AR', 'CC', 'CXX', 'HOME', 'LD_LIBRARY_PATH',
183 'LIBRARY_PATH', 'PATH', 'PKG_CONFIG_PATH', 'PYTHONPATH',
184 'RANLIB', 'SWIG' ])
185
186use_env = {}
187for key,val in os.environ.iteritems():
188 if key in use_vars or key.startswith("M5"):
189 use_env[key] = val
190
191main = Environment(ENV=use_env)
192main.Decider('MD5-timestamp')
193main.root = Dir(".") # The current directory (where this file lives).
194main.srcdir = Dir("src") # The source directory
195
196main_dict_keys = main.Dictionary().keys()

--- 981 unchanged lines hidden ---