Commit b90df6dd authored by J. Goutin's avatar J. Goutin Committed by GitHub

Update msvc.py

parent 79d1fc0d
...@@ -237,6 +237,10 @@ def _augment_exception(exc, version, arch=''): ...@@ -237,6 +237,10 @@ def _augment_exception(exc, version, arch=''):
# For VC++ 10.0 Redirect user to Windows SDK 7.1 # For VC++ 10.0 Redirect user to Windows SDK 7.1
message += ' Get it with "Microsoft Windows SDK 7.1": ' message += ' Get it with "Microsoft Windows SDK 7.1": '
message += msdownload % 8279 message += msdownload % 8279
elif version >= 14.0:
# For VC++ 14.0 Redirect user to Visual C++ Build Tools
message += ' Get it with "Visual C++ Build Tools": '
r'http://landinghub.visualstudio.com/visual-cpp-build-tools'
exc.args = (message, ) exc.args = (message, )
......
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