Lines Matching full:environment
21 config.environment['PATH'],
25 config.environment['PATH']))
26 config.environment['PATH'] = path
29 # LIT_USE_INTERNAL_SHELL is in the environment, we use that as an override.
64 path = os.path.pathsep.join((llvm_tools_dir, config.environment['PATH']))
65 config.environment['PATH'] = path
67 # Propagate 'HOME' through the environment.
69 config.environment['HOME'] = os.environ['HOME']
71 # Propagate 'INCLUDE' through the environment.
73 config.environment['INCLUDE'] = os.environ['INCLUDE']
75 # Propagate 'LIB' through the environment.
77 config.environment['LIB'] = os.environ['LIB']
82 config.environment['TMP'] = os.environ['TMP']
84 config.environment['TEMP'] = os.environ['TEMP']
86 # Propagate LLVM_SRC_ROOT into the environment.
87 config.environment['LLVM_SRC_ROOT'] = getattr(config, 'llvm_src_root', '')
89 # Propagate PYTHON_EXECUTABLE into the environment
90 config.environment['PYTHON_EXECUTABLE'] = getattr(config, 'python_executable',
96 config.environment[symbolizer] = os.environ[symbolizer]
109 config.environment['OCAMLPATH'] = ocamlpath
111 config.environment['OCAMLPATH'] = llvm_ocaml_lib
116 config.environment['CAML_LD_LIBRARY_PATH'] = caml_ld_library_path
118 config.environment['CAML_LD_LIBRARY_PATH'] = llvm_ocaml_lib
121 config.environment['OCAMLRUNPARAM'] = 'b'
148 llvm_config = lit.util.which('llvm-config', config.environment['PATH'])
439 env=config.environment)
486 config.environment.update({'DYLD_INSERT_LIBRARIES' : gmalloc_path_str})
493 env=config.environment)