mirror of https://github.com/python/cpython
Issue #27705: Update message in validate_ucrtbase.py
This commit is contained in:
parent
28325749c0
commit
f2bdb6b8ca
|
@ -301,6 +301,8 @@ Windows
|
||||||
Build
|
Build
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
- Issue #27705: Update message in validate_ucrtbase.py
|
||||||
|
|
||||||
- Issue #27983: Cause lack of llvm-profdata tool when using clang as
|
- Issue #27983: Cause lack of llvm-profdata tool when using clang as
|
||||||
required for PGO linking to be a configure time error rather than
|
required for PGO linking to be a configure time error rather than
|
||||||
make time when --with-optimizations is enabled. Also improve our
|
make time when --with-optimizations is enabled. Also improve our
|
||||||
|
|
|
@ -82,7 +82,8 @@ print('{} is version {}.{}.{}.{}'.format(name.value, *ver))
|
||||||
|
|
||||||
if ver < (10, 0, 10586):
|
if ver < (10, 0, 10586):
|
||||||
print('WARN: ucrtbased contains known issues. '
|
print('WARN: ucrtbased contains known issues. '
|
||||||
'Please update Visual Studio or the Windows SDK.')
|
'Please update the Windows 10 SDK.')
|
||||||
print('See:')
|
print('See:')
|
||||||
print(' http://bugs.python.org/issue26624')
|
print(' http://bugs.python.org/issue27705')
|
||||||
|
print(' https://developer.microsoft.com/en-US/windows/downloads/windows-10-sdk')
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
Loading…
Reference in New Issue