Lines Matching full:environment
30 config.environment['PATH'],
34 config.environment['PATH']))
35 config.environment['PATH'] = path
54 config.environment['PATH']))
55 config.environment['PATH'] = path
62 config.environment['PATH']))
63 config.environment['PATH'] = path
68 path = os.path.pathsep.join((llvm_tools_dir, config.environment['PATH']))
69 config.environment['PATH'] = path
71 # Propagate 'HOME' through the environment.
73 config.environment['HOME'] = os.environ['HOME']
75 # Propagate 'INCLUDE' through the environment.
77 config.environment['INCLUDE'] = os.environ['INCLUDE']
79 # Propagate 'LIB' through the environment.
81 config.environment['LIB'] = os.environ['LIB']
86 config.environment['TMP'] = os.environ['TMP']
88 config.environment['TEMP'] = os.environ['TEMP']
90 # Propagate LLVM_SRC_ROOT into the environment.
91 config.environment['LLVM_SRC_ROOT'] = getattr(config, 'llvm_src_root', '')
93 # Propagate PYTHON_EXECUTABLE into the environment
94 config.environment['PYTHON_EXECUTABLE'] = getattr(config, 'python_executable',
122 llvm_config = lit.util.which('llvm-config', config.environment['PATH'])