Lines Matching refs:target_cpu
179 def _CopyUCRTRuntime(target_dir, source_dir, target_cpu, dll_pattern, suffix): argument
197 target_cpu)
231 def _CopyPGORuntime(target_dir, target_cpu): argument
252 if target_cpu == 'x86':
254 elif target_cpu == 'x64':
257 raise NotImplementedError("Unexpected target_cpu value: " + target_cpu)
263 def _CopyRuntime(target_dir, source_dir, target_cpu, debug): argument
268 _CopyUCRTRuntime(target_dir, source_dir, target_cpu, '%s140' + suffix,
272 def CopyDlls(target_dir, configuration, target_cpu): argument
286 runtime_dir = x64_runtime if target_cpu == 'x64' else x86_runtime
287 _CopyRuntime(target_dir, runtime_dir, target_cpu, debug=False)
289 _CopyRuntime(target_dir, runtime_dir, target_cpu, debug=True)
291 _CopyPGORuntime(target_dir, target_cpu)
293 _CopyDebugger(target_dir, target_cpu)
296 def _CopyDebugger(target_dir, target_cpu): argument
317 full_path = os.path.join(win_sdk_dir, 'Debuggers', target_cpu, debug_file)