Skip to content

Commit f2bdb6b

Browse files
committed
Issue python#27705: Update message in validate_ucrtbase.py
1 parent 2832574 commit f2bdb6b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,8 @@ Windows
301301
Build
302302
-----
303303

304+
- Issue #27705: Update message in validate_ucrtbase.py
305+
304306
- Issue #27983: Cause lack of llvm-profdata tool when using clang as
305307
required for PGO linking to be a configure time error rather than
306308
make time when --with-optimizations is enabled. Also improve our

PC/validate_ucrtbase.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ class VS_FIXEDFILEINFO(Structure):
8282

8383
if ver < (10, 0, 10586):
8484
print('WARN: ucrtbased contains known issues. '
85-
'Please update Visual Studio or the Windows SDK.')
85+
'Please update the Windows 10 SDK.')
8686
print('See:')
87-
print(' http://bugs.python.org/issue26624')
87+
print(' http://bugs.python.org/issue27705')
88+
print(' https://developer.microsoft.com/en-US/windows/downloads/windows-10-sdk')
8889
sys.exit(1)

0 commit comments

Comments
 (0)