Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
30f4fa45
Commit
30f4fa45
authored
Nov 06, 2017
by
Steve Dower
Committed by
GitHub
Nov 06, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-31957: Fixes version detection. (#4298)
parent
7e666eed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
Misc/NEWS.d/next/Build/2017-11-06-11-53-39.bpo-31957.S_1jFK.rst
...EWS.d/next/Build/2017-11-06-11-53-39.bpo-31957.S_1jFK.rst
+1
-0
PCbuild/python.props
PCbuild/python.props
+7
-8
No files found.
Misc/NEWS.d/next/Build/2017-11-06-11-53-39.bpo-31957.S_1jFK.rst
0 → 100644
View file @
30f4fa45
Fixes Windows SDK version detection when building for Windows.
PCbuild/python.props
View file @
30f4fa45
...
...
@@ -73,14 +73,13 @@
possible version). Since we limit WINVER to Windows 7 anyway, it doesn't really
matter which WinSDK version we use.
-->
<DefaultWindowsSDKVersion
Condition=
"$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) >= '10.0.15063'"
>
10.0.15063.0
</DefaultWindowsSDKVersion>
<DefaultWindowsSDKVersion
Condition=
"$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) >= '10.0.15063'"
>
10.0.15063.0
</DefaultWindowsSDKVersion>
<DefaultWindowsSDKVersion
Condition=
"$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.14393'"
>
10.0.14393.0
</DefaultWindowsSDKVersion>
<DefaultWindowsSDKVersion
Condition=
"$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.14393'"
>
10.0.14393.0
</DefaultWindowsSDKVersion>
<DefaultWindowsSDKVersion
Condition=
"$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.10586'"
>
10.0.10586.0
</DefaultWindowsSDKVersion>
<DefaultWindowsSDKVersion
Condition=
"$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.10586'"
>
10.0.10586.0
</DefaultWindowsSDKVersion>
<DefaultWindowsSDKVersion
Condition=
"$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.10240'"
>
10.0.10240.0
</DefaultWindowsSDKVersion>
<DefaultWindowsSDKVersion
Condition=
"$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.10240'"
>
10.0.10240.0
</DefaultWindowsSDKVersion>
<_RegistryVersion>
$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion)
</_RegistryVersion>
<_RegistryVersion
Condition=
"$(_RegistryVersion) == ''"
>
$(Registry:HKEY_LOCAL_MACHINE\WOW6432Node\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion)
</_RegistryVersion>
<DefaultWindowsSDKVersion>
10.0.16299.0
</DefaultWindowsSDKVersion>
<DefaultWindowsSDKVersion
Condition=
"$(_RegistryVersion) == '10.0.15063'"
>
10.0.15063.0
</DefaultWindowsSDKVersion>
<DefaultWindowsSDKVersion
Condition=
"$(_RegistryVersion) == '10.0.14393'"
>
10.0.14393.0
</DefaultWindowsSDKVersion>
<DefaultWindowsSDKVersion
Condition=
"$(_RegistryVersion) == '10.0.10586'"
>
10.0.10586.0
</DefaultWindowsSDKVersion>
<DefaultWindowsSDKVersion
Condition=
"$(_RegistryVersion) == '10.0.10240'"
>
10.0.10240.0
</DefaultWindowsSDKVersion>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(OverrideVersion)' == ''"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment