changeset: 103523:7f7a994bbfbc branch: 3.5 parent: 103521:1206c64de875 user: Steve Dower date: Fri Sep 09 18:21:15 2016 -0700 files: Misc/NEWS PC/validate_ucrtbase.py description: Issue #27705: Update message in validate_ucrtbase.py diff -r 1206c64de875 -r 7f7a994bbfbc Misc/NEWS --- a/Misc/NEWS Fri Sep 09 18:18:52 2016 -0700 +++ b/Misc/NEWS Fri Sep 09 18:21:15 2016 -0700 @@ -301,6 +301,8 @@ Build ----- +- Issue #27705: Update message in validate_ucrtbase.py + - Issue #27983: Cause lack of llvm-profdata tool when using clang as required for PGO linking to be a configure time error rather than make time when --with-optimizations is enabled. Also improve our diff -r 1206c64de875 -r 7f7a994bbfbc PC/validate_ucrtbase.py --- a/PC/validate_ucrtbase.py Fri Sep 09 18:18:52 2016 -0700 +++ b/PC/validate_ucrtbase.py Fri Sep 09 18:21:15 2016 -0700 @@ -82,7 +82,8 @@ if ver < (10, 0, 10586): print('WARN: ucrtbased contains known issues. ' - 'Please update Visual Studio or the Windows SDK.') + 'Please update the Windows 10 SDK.') 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)