Commit 21a82c61 authored by Johann's avatar Johann Committed by Commit Bot

visual studio setup: require older SDK

Support for the latest SDK is incomplete. Mention the required version
when prompting the developer.

R=brucedawson@chromium.org

Bug: 773476
Change-Id: I01010f0db251e11617fb879845940fa2aee19f7b
Reviewed-on: https://chromium-review.googlesource.com/1050691
Commit-Queue: Johann Koenig <johannkoenig@google.com>
Reviewed-by: default avatarBruce Dawson <brucedawson@chromium.org>
Cr-Commit-Position: refs/heads/master@{#557178}
parent 4f776493
......@@ -332,9 +332,11 @@ def _CopyDebugger(target_dir, target_cpu):
if is_optional:
continue
else:
# TODO(crbug.com/773476): remove version requirement.
raise Exception('%s not found in "%s"\r\nYou must install the '
'"Debugging Tools for Windows" feature from the Windows'
' 10 SDK.' % (debug_file, full_path))
' 10 SDK. You must use v10.0.15063.468. of the SDK'
% (debug_file, full_path))
target_path = os.path.join(target_dir, debug_file)
_CopyRuntimeImpl(target_path, full_path)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment