aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/msvc.py
diff options
context:
space:
mode:
authorJ. Goutin <JGoutin@users.noreply.github.com>2016-07-03 14:06:54 +0200
committerGitHub <noreply@github.com>2016-07-03 14:06:54 +0200
commitb90df6ddf053d18c32c72502521eecb36bc454a6 (patch)
treed4bcf1c52410a6e3194c6a25321ca775ae72a985 /setuptools/msvc.py
parent79d1fc0d9f50af9f51a3c7a7188e4afc644a4aac (diff)
downloadexternal_python_setuptools-b90df6ddf053d18c32c72502521eecb36bc454a6.tar.gz
external_python_setuptools-b90df6ddf053d18c32c72502521eecb36bc454a6.tar.bz2
external_python_setuptools-b90df6ddf053d18c32c72502521eecb36bc454a6.zip
Update msvc.py
Diffstat (limited to 'setuptools/msvc.py')
-rw-r--r--setuptools/msvc.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/setuptools/msvc.py b/setuptools/msvc.py
index a03f4fe3..d5a48dce 100644
--- a/setuptools/msvc.py
+++ b/setuptools/msvc.py
@@ -237,6 +237,10 @@ def _augment_exception(exc, version, arch=''):
# For VC++ 10.0 Redirect user to Windows SDK 7.1
message += ' Get it with "Microsoft Windows SDK 7.1": '
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, )