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
f96e7fd9
Commit
f96e7fd9
authored
May 17, 2019
by
Paul Monson
Committed by
Steve Dower
May 17, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-36941: Windows build changes for Windows ARM64 (GH-13365)
parent
cab5d074
Changes
47
Hide whitespace changes
Inline
Side-by-side
Showing
47 changed files
with
1029 additions
and
7 deletions
+1029
-7
.gitignore
.gitignore
+1
-0
PCbuild/_asyncio.vcxproj
PCbuild/_asyncio.vcxproj
+16
-0
PCbuild/_bz2.vcxproj
PCbuild/_bz2.vcxproj
+16
-0
PCbuild/_ctypes.vcxproj
PCbuild/_ctypes.vcxproj
+16
-0
PCbuild/_ctypes_test.vcxproj
PCbuild/_ctypes_test.vcxproj
+16
-0
PCbuild/_decimal.vcxproj
PCbuild/_decimal.vcxproj
+18
-0
PCbuild/_elementtree.vcxproj
PCbuild/_elementtree.vcxproj
+16
-0
PCbuild/_freeze_importlib.vcxproj
PCbuild/_freeze_importlib.vcxproj
+16
-0
PCbuild/_hashlib.vcxproj
PCbuild/_hashlib.vcxproj
+16
-0
PCbuild/_lzma.vcxproj
PCbuild/_lzma.vcxproj
+16
-0
PCbuild/_msi.vcxproj
PCbuild/_msi.vcxproj
+16
-0
PCbuild/_multiprocessing.vcxproj
PCbuild/_multiprocessing.vcxproj
+16
-0
PCbuild/_overlapped.vcxproj
PCbuild/_overlapped.vcxproj
+16
-0
PCbuild/_queue.vcxproj
PCbuild/_queue.vcxproj
+16
-0
PCbuild/_socket.vcxproj
PCbuild/_socket.vcxproj
+16
-0
PCbuild/_sqlite3.vcxproj
PCbuild/_sqlite3.vcxproj
+16
-0
PCbuild/_ssl.vcxproj
PCbuild/_ssl.vcxproj
+16
-0
PCbuild/_testbuffer.vcxproj
PCbuild/_testbuffer.vcxproj
+16
-0
PCbuild/_testcapi.vcxproj
PCbuild/_testcapi.vcxproj
+16
-0
PCbuild/_testconsole.vcxproj
PCbuild/_testconsole.vcxproj
+16
-0
PCbuild/_testembed.vcxproj
PCbuild/_testembed.vcxproj
+16
-0
PCbuild/_testimportmultiple.vcxproj
PCbuild/_testimportmultiple.vcxproj
+16
-0
PCbuild/_testinternalcapi.vcxproj
PCbuild/_testinternalcapi.vcxproj
+16
-0
PCbuild/_testmultiphase.vcxproj
PCbuild/_testmultiphase.vcxproj
+16
-0
PCbuild/_tkinter.vcxproj
PCbuild/_tkinter.vcxproj
+16
-0
PCbuild/build.bat
PCbuild/build.bat
+5
-1
PCbuild/liblzma.vcxproj
PCbuild/liblzma.vcxproj
+16
-0
PCbuild/pcbuild.proj
PCbuild/pcbuild.proj
+4
-2
PCbuild/pcbuild.sln
PCbuild/pcbuild.sln
+343
-1
PCbuild/prepare_libffi.bat
PCbuild/prepare_libffi.bat
+22
-2
PCbuild/pyexpat.vcxproj
PCbuild/pyexpat.vcxproj
+16
-0
PCbuild/pylauncher.vcxproj
PCbuild/pylauncher.vcxproj
+16
-0
PCbuild/pyproject.props
PCbuild/pyproject.props
+1
-0
PCbuild/pyshellext.vcxproj
PCbuild/pyshellext.vcxproj
+16
-0
PCbuild/python.props
PCbuild/python.props
+9
-0
PCbuild/python.vcxproj
PCbuild/python.vcxproj
+17
-1
PCbuild/python3dll.vcxproj
PCbuild/python3dll.vcxproj
+17
-0
PCbuild/pythoncore.vcxproj
PCbuild/pythoncore.vcxproj
+16
-0
PCbuild/pythonw.vcxproj
PCbuild/pythonw.vcxproj
+16
-0
PCbuild/pywlauncher.vcxproj
PCbuild/pywlauncher.vcxproj
+16
-0
PCbuild/select.vcxproj
PCbuild/select.vcxproj
+16
-0
PCbuild/sqlite3.vcxproj
PCbuild/sqlite3.vcxproj
+16
-0
PCbuild/unicodedata.vcxproj
PCbuild/unicodedata.vcxproj
+16
-0
PCbuild/venvlauncher.vcxproj
PCbuild/venvlauncher.vcxproj
+16
-0
PCbuild/venvwlauncher.vcxproj
PCbuild/venvwlauncher.vcxproj
+16
-0
PCbuild/winsound.vcxproj
PCbuild/winsound.vcxproj
+16
-0
PCbuild/xxlimited.vcxproj
PCbuild/xxlimited.vcxproj
+16
-0
No files found.
.gitignore
View file @
f96e7fd9
...
...
@@ -70,6 +70,7 @@ PCbuild/*.VC.opendb
PCbuild/.vs/
PCbuild/amd64/
PCbuild/arm32/
PCbuild/arm64/
PCbuild/obj/
PCbuild/win32/
.purify
...
...
PCbuild/_asyncio.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_bz2.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_ctypes.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_ctypes_test.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_decimal.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -80,6 +96,7 @@
<PreprocessorDefinitions>
_CRT_SECURE_NO_WARNINGS;MASM;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Platform)' == 'Win32'"
>
CONFIG_32;PPRO;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Platform)'=='ARM'"
>
CONFIG_32;ANSI;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Platform)'=='ARM64'"
>
CONFIG_64;ANSI;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Platform)' == 'x64'"
>
CONFIG_64;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<AdditionalIncludeDirectories>
..\Modules\_decimal;..\Modules\_decimal\libmpdec;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
</ClCompile>
...
...
@@ -124,6 +141,7 @@
<CustomBuild
Include=
"..\Modules\_decimal\libmpdec\vcdiv64.asm"
>
<ExcludedFromBuild
Condition=
"'$(Platform)'=='Win32'"
>
true
</ExcludedFromBuild>
<ExcludedFromBuild
Condition=
"'$(Platform)'=='ARM'"
>
true
</ExcludedFromBuild>
<ExcludedFromBuild
Condition=
"'$(Platform)'=='ARM64'"
>
true
</ExcludedFromBuild>
<Command>
ml64 /nologo /c /Zi /Fo "$(IntDir)vcdiv64.obj" "%(FullPath)"
</Command>
<Outputs>
$(IntDir)vcdiv64.obj;%(Outputs)
</Outputs>
</CustomBuild>
...
...
PCbuild/_elementtree.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_freeze_importlib.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_hashlib.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_lzma.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_msi.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM4
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_multiprocessing.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_overlapped.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_queue.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_socket.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_sqlite3.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_ssl.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_testbuffer.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_testcapi.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_testconsole.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_testembed.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_testimportmultiple.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_testinternalcapi.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_testmultiphase.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/_tkinter.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/build.bat
View file @
f96e7fd9
...
...
@@ -35,13 +35,14 @@ echo. --test-marker Enable the test marker within the build.
echo.
echo.Available flags to avoid building certain modules.
echo.These flags have no effect if '
-e
' is not given:
echo. --no-ctypes Do not attempt to build _ctypes
echo. --no-ssl Do not attempt to build _ssl
echo. --no-tkinter Do not attempt to build Tkinter
echo.
echo.Available arguments:
echo. -c Release
^|
Debug
^|
PGInstrument
^|
PGUpdate
echo. Set the configuration (default: Release)
echo. -p x64
^|
Win32
^|
ARM
echo. -p x64
^|
Win32
^|
ARM
^|
ARM64
echo. Set the platform (default: Win32)
echo. -t Build
^|
Rebuild
^|
Clean
^|
CleanAll
echo. Set the target manually
...
...
@@ -81,10 +82,12 @@ rem them in through the environment, but we specify them on the command line
rem anyway for visibility so set defaults after this
if "
%
~1"=="-e" (set IncludeExternals=true) & shift & goto CheckOpts
if "
%
~1"=="-E" (set IncludeExternals=false) & shift & goto CheckOpts
if "
%
~1"=="--no-ctypes" (set IncludeCTypes=false) & shift & goto CheckOpts
if "
%
~1"=="--no-ssl" (set IncludeSSL=false) & shift & goto CheckOpts
if "
%
~1"=="--no-tkinter" (set IncludeTkinter=false) & shift & goto CheckOpts
if "
%IncludeExternals%
"=="" set IncludeExternals=true
if "
%IncludeCTypes%
"=="" set IncludeCTypes=true
if "
%IncludeSSL%
"=="" set IncludeSSL=true
if "
%IncludeTkinter%
"=="" set IncludeTkinter=true
...
...
@@ -139,6 +142,7 @@ echo on
%MSBUILD%
"
%dir%
pcbuild.proj" /t:
%target%
%parallel%
%verbose%
^
/p:Configuration=
%conf%
/p:Platform=
%platf%
^
/p:IncludeExternals=
%IncludeExternals%
^
/p:IncludeCTypes=
%IncludeCTypes%
^
/p:IncludeSSL=
%IncludeSSL%
/p:IncludeTkinter=
%IncludeTkinter%
^
/p:UseTestMarker=
%UseTestMarker%
%GITProperty%
^
%
1
%
2
%
3
%
4
%
5
%
6
%
7
%
8
%
9
...
...
PCbuild/liblzma.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -21,6 +25,18 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/pcbuild.proj
View file @
f96e7fd9
...
...
@@ -7,6 +7,7 @@
<IncludeExtensions
Condition=
"'$(IncludeExtensions)' == ''"
>
true
</IncludeExtensions>
<IncludeExternals
Condition=
"'$(IncludeExternals)' == ''"
>
true
</IncludeExternals>
<IncludeTests
Condition=
"'$(IncludeTest)' == ''"
>
true
</IncludeTests>
<IncludeCTypes
Condition=
"'$(IncludeCTypes)' == ''"
>
true
</IncludeCTypes>
<IncludeSSL
Condition=
"'$(IncludeSSL)' == ''"
>
true
</IncludeSSL>
<IncludeTkinter
Condition=
"'$(IncludeTkinter)' == ''"
>
true
</IncludeTkinter>
<IncludeUwp
Condition=
"'$(IncludeUwp)' == ''"
>
false
</IncludeUwp>
...
...
@@ -50,7 +51,8 @@
<!-- pyshellext.dll -->
<Projects
Include=
"pyshellext.vcxproj"
/>
<!-- Extension modules -->
<ExtensionModules
Include=
"_asyncio;_ctypes;_decimal;_elementtree;_msi;_multiprocessing;_overlapped;pyexpat;_queue;select;unicodedata;winsound"
/>
<ExtensionModules
Include=
"_asyncio;_decimal;_elementtree;_msi;_multiprocessing;_overlapped;pyexpat;_queue;select;unicodedata;winsound"
/>
<ExtensionModules
Include=
"_ctypes"
Condition=
"$(IncludeCTypes)"
/>
<!-- Extension modules that require external sources -->
<ExternalModules
Include=
"_bz2;_lzma;_sqlite3"
/>
<!-- venv launchers -->
...
...
@@ -70,7 +72,7 @@
</Projects>
<!-- _freeze_importlib -->
<Projects2
Condition=
"$(Platform) != 'ARM'"
Include=
"_freeze_importlib.vcxproj"
/>
<Projects2
Condition=
"$(Platform) != 'ARM'
and $(Platform) != 'ARM64'
"
Include=
"_freeze_importlib.vcxproj"
/>
<!-- python[w].exe -->
<Projects2
Include=
"python.vcxproj;pythonw.vcxproj"
/>
<Projects2
Include=
"python_uwp.vcxproj;pythonw_uwp.vcxproj"
Condition=
"$(IncludeUwp)"
/>
...
...
PCbuild/pcbuild.sln
View file @
f96e7fd9
This source diff could not be displayed because it is too large. You can
view the blob
instead.
PCbuild/prepare_libffi.bat
View file @
f96e7fd9
...
...
@@ -25,6 +25,7 @@ echo.Available flags:
echo
.
-x
64
build
for
x64
echo
.
-x
86
build
for
x86
echo
.
-arm
32
build
for
arm32
echo
.
-arm
64
build
for
arm64
echo
.
-?
this
help
echo
.
-
-install-cygwin
install
cygwin
to
c
:\cygwin
exit
/b
127
...
...
@@ -34,6 +35,9 @@ exit /b 127
set
BUILD_X64
=
set
BUILD_X86
=
set
BUILD_ARM32
=
set
BUILD_ARM64
=
set
BUILD_PDB
=
set
BUILD_NOOPT
=
set
INSTALL_CYGWIN
=
:CheckOpts
...
...
@@ -41,16 +45,20 @@ if "%1"=="" goto :CheckOptsDone
if
/I
"
%
1"
==
"-x64"
(
set
BUILD_X64
=
1
)
&
shift
&
goto
:CheckOpts
if
/I
"
%
1"
==
"-x86"
(
set
BUILD_X86
=
1
)
&
shift
&
goto
:CheckOpts
if
/I
"
%
1"
==
"-arm32"
(
set
BUILD_ARM32
=
1
)
&
shift
&
goto
:CheckOpts
if
/I
"
%
1"
==
"-arm64"
(
set
BUILD_ARM64
=
1
)
&
shift
&
goto
:CheckOpts
if
/I
"
%
1"
==
"-pdb"
(
set
BUILD_PDB
=
-g
)
&
shift
&
goto
:CheckOpts
if
/I
"
%
1"
==
"-noopt"
(
set
BUILD_NOOPT
=
CFLAGS
=
'-Od -warn all'
)
&
shift
&
goto
:CheckOpts
if
/I
"
%
1"
==
"-?"
goto
:Usage
if
/I
"
%
1"
==
"--install-cygwin"
(
set
INSTALL_CYGWIN
=
1
)
&
shift
&
goto
:CheckOpts
goto
:Usage
:CheckOptsDone
if
NOT
DEFINED
BUILD_X64
if
NOT
DEFINED
BUILD_X86
if
NOT
DEFINED
BUILD_ARM32
(
if
NOT
DEFINED
BUILD_X64
if
NOT
DEFINED
BUILD_X86
if
NOT
DEFINED
BUILD_ARM32
if
NOT
DEFINED
BUILD_ARM64
(
set
BUILD_X64
=
1
set
BUILD_X86
=
1
set
BUILD_ARM32
=
1
set
BUILD_ARM64
=
1
)
if
"
%INSTALL_CYGWIN%
"
==
"1"
call
:InstallCygwin
...
...
@@ -90,6 +98,7 @@ if not exist Makefile.in (%SH% -lc "(cd $LIBFFI_SOURCE; ./autogen.sh;)")
if
"
%BUILD
_X64
%
"
==
"1"
call
:BuildOne
x64
x86_64
-w
64
-cygwin
x86_64
-w
64
-cygwin
if
"
%BUILD
_X86
%
"
==
"1"
call
:BuildOne
x86
i686
-pc-cygwin
i686
-pc-cygwin
if
"
%BUILD
_ARM32
%
"
==
"1"
call
:BuildOne
x86_arm
i686
-pc-cygwin
arm
-w
32
-cygwin
if
"
%BUILD
_ARM64
%
"
==
"1"
call
:BuildOne
x86_arm64
i686
-pc-cygwin
aarch64
-w
64
-cygwin
popd
endlocal
...
...
@@ -129,6 +138,12 @@ if /I "%VCVARS_PLATFORM%" EQU "x86_arm" (
set
ASSEMBLER
=
-marm
set
SRC_ARCHITECTURE
=
ARM
)
if
/I
"
%VCVARS_PLATFORM%
"
EQU
"x86_arm64"
(
set
ARCH
=
arm64
set
ARTIFACTS
=
%LIBFFI_SOURCE%
\aarch64
-w
64
-cygwin
set
ASSEMBLER
=
-marm
64
set
SRC_ARCHITECTURE
=
aarch64
)
if
NOT
DEFINED
LIBFFI_OUT
set
LIBFFI_OUT
=
%~dp0
\..\externals\libffi
set
_LIBFFI_OUT
=
%LIBFFI_OUT%
\
%ARCH%
...
...
@@ -139,10 +154,14 @@ call %VCVARSALL% %VCVARS_PLATFORM%
echo
clean
%_LIBFFI_OUT%
if
exist
%_LIBFFI_OUT%
(
rd
%_LIBFFI_OUT%
/s/q
)
echo
================================================================
echo
Configure
the
build
to
generate
fficonfig
.h
and
ffi
.h
%SH%
-lc
"(cd $OLDPWD; ./configure CC='
%MSVCC%
%ASSEMBLER%
' CXX='
%MSVCC%
%ASSEMBLER%
' LD='link' CPP='cl -nologo -EP' CXXCPP='cl -nologo -EP' CPPFLAGS='-DFFI_BUILDING_DLL' NM='dumpbin -symbols' STRIP=':' --build=$BUILD --host=$HOST;)"
echo
================================================================
%SH%
-lc
"(cd $OLDPWD; ./configure CC='
%MSVCC%
%ASSEMBLER%
%BUILD_PDB%
' CXX='
%MSVCC%
%ASSEMBLER%
%BUILD_PDB%
' LD='link' CPP='cl -nologo -EP' CXXCPP='cl -nologo -EP' CPPFLAGS='-DFFI_BUILDING_DLL'
%BUILD_NOOPT%
NM='dumpbin -symbols' STRIP=':' --build=$BUILD --host=$HOST;)"
echo
================================================================
echo
Building
libffi
echo
================================================================
%SH%
-lc
"(cd $OLDPWD; export PATH=/usr/bin:$PATH; cp src/
%SRC_ARCHITECTURE%
/ffitarget.h include; make; find .;)"
REM Tests are not needed to produce artifacts
...
...
@@ -158,6 +177,7 @@ echo copying files to %_LIBFFI_OUT%
if
not
exist
%_LIBFFI_OUT%
\include
(
md
%_LIBFFI_OUT%
\include
)
copy
%ARTIFACTS%
\.libs\libffi
-
7
.dll
%_LIBFFI_OUT%
copy
%ARTIFACTS%
\.libs\libffi
-
7
.lib
%_LIBFFI_OUT%
copy
%ARTIFACTS%
\.libs\libffi
-
7
.pdb
%_LIBFFI_OUT%
copy
%ARTIFACTS%
\fficonfig.h
%_LIBFFI_OUT%
\include
copy
%ARTIFACTS%
\include\
*
.h
%_LIBFFI_OUT%
\include
...
...
PCbuild/pyexpat.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/pylauncher.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/pyproject.props
View file @
f96e7fd9
...
...
@@ -65,6 +65,7 @@
<TargetMachine>
MachineX86
</TargetMachine>
<TargetMachine
Condition=
"'$(Platform)' == 'x64'"
>
MachineX64
</TargetMachine>
<TargetMachine
Condition=
"'$(Platform)'=='ARM'"
>
MachineARM
</TargetMachine>
<TargetMachine
Condition=
"'$(Platform)'=='ARM64'"
>
MachineARM64
</TargetMachine>
<ProfileGuidedDatabase
Condition=
"$(SupportPGO)"
>
$(OutDir)$(TargetName).pgd
</ProfileGuidedDatabase>
<LinkTimeCodeGeneration
Condition=
"$(Configuration) == 'Release'"
>
UseLinkTimeCodeGeneration
</LinkTimeCodeGeneration>
<LinkTimeCodeGeneration
Condition=
"$(SupportPGO) and $(Configuration) == 'PGInstrument'"
>
PGInstrument
</LinkTimeCodeGeneration>
...
...
PCbuild/pyshellext.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/python.props
View file @
f96e7fd9
...
...
@@ -40,9 +40,12 @@
<BuildPath64
Condition=
"'$(Py_OutDir)' != ''"
>
$(Py_OutDir)\amd64\
</BuildPath64>
<BuildPathArm32
Condition=
"'$(Py_OutDir)' == ''"
>
$(PySourcePath)PCbuild\arm32\
</BuildPathArm32>
<BuildPathArm32
Condition=
"'$(Py_OutDir)' != ''"
>
$(Py_OutDir)\arm32\
</BuildPathArm32>
<BuildPathArm64
Condition=
"'$(Py_OutDir)' == ''"
>
$(PySourcePath)PCbuild\arm64\
</BuildPathArm64>
<BuildPathArm64
Condition=
"'$(Py_OutDir)' != ''"
>
$(Py_OutDir)\arm64\
</BuildPathArm64>
<BuildPath
Condition=
"'$(ArchName)' == 'win32'"
>
$(BuildPath32)
</BuildPath>
<BuildPath
Condition=
"'$(ArchName)' == 'amd64'"
>
$(BuildPath64)
</BuildPath>
<BuildPath
Condition=
"'$(ArchName)' == 'arm32'"
>
$(BuildPathArm32)
</BuildPath>
<BuildPath
Condition=
"'$(ArchName)' == 'arm64'"
>
$(BuildPathArm64)
</BuildPath>
<BuildPath
Condition=
"'$(BuildPath)' == ''"
>
$(PySourcePath)PCbuild\$(ArchName)\
</BuildPath>
<BuildPath
Condition=
"!HasTrailingSlash($(BuildPath))"
>
$(BuildPath)\
</BuildPath>
<BuildPath
Condition=
"$(Configuration) == 'PGInstrument'"
>
$(BuildPath)instrumented\
</BuildPath>
...
...
@@ -72,6 +75,7 @@
<!-- Suffix for versions/keys when building for particular platforms -->
<PyArchExt
Condition=
"'$(ArchName)' == 'win32'"
>
-32
</PyArchExt>
<PyArchExt
Condition=
"'$(ArchName)' == 'arm32'"
>
-arm32
</PyArchExt>
<PyArchExt
Condition=
"'$(ArchName)' == 'arm64'"
>
-arm64
</PyArchExt>
<!-- Full path of the resulting python.exe binary -->
<PythonExe
Condition=
"'$(PythonExe)' == ''"
>
$(BuildPath)python$(PyDebugExt).exe
</PythonExe>
...
...
@@ -81,6 +85,10 @@
<WindowsSDKDesktopARMSupport>
true
</WindowsSDKDesktopARMSupport>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Platform)'=='ARM64'"
Label=
"Arm64Configuration"
>
<WindowsSDKDesktopARMSupport>
true
</WindowsSDKDesktopARMSupport>
</PropertyGroup>
<PropertyGroup
Condition=
"$(DefaultWindowsSDKVersion) == ''"
>
<!--
Attempt to select the latest installed WinSDK. If we don't find any, then we will
...
...
@@ -194,6 +202,7 @@
<!-- The version and platform tag to include in .pyd filenames -->
<PydTag
Condition=
"$(ArchName) == 'win32'"
>
.cp$(MajorVersionNumber)$(MinorVersionNumber)-win32
</PydTag>
<PydTag
Condition=
"$(ArchName) == 'arm32'"
>
.cp$(MajorVersionNumber)$(MinorVersionNumber)-win_arm32
</PydTag>
<PydTag
Condition=
"$(ArchName) == 'arm64'"
>
.cp$(MajorVersionNumber)$(MinorVersionNumber)-win_arm64
</PydTag>
<PydTag
Condition=
"$(ArchName) == 'amd64'"
>
.cp$(MajorVersionNumber)$(MinorVersionNumber)-win_amd64
</PydTag>
<!-- The version number for sys.winver -->
...
...
PCbuild/python.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -98,7 +114,7 @@
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.targets"
/>
<ImportGroup
Label=
"ExtensionTargets"
>
</ImportGroup>
<Target
Name=
"ValidateUcrtbase"
AfterTargets=
"AfterBuild"
Condition=
"$(Configuration) != 'PGInstrument' and $(Platform) != 'ARM'"
>
<Target
Name=
"ValidateUcrtbase"
AfterTargets=
"AfterBuild"
Condition=
"$(Configuration) != 'PGInstrument' and $(Platform) != 'ARM'
and $(Platform) != 'ARM64'
"
>
<PropertyGroup>
<UcrtName>
ucrtbase
</UcrtName>
<UcrtName
Condition=
"'$(Configuration)' == 'Debug'"
>
ucrtbased
</UcrtName>
...
...
PCbuild/python3dll.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -75,6 +91,7 @@
<_Machine>
X86
</_Machine>
<_Machine
Condition=
"$(Platform) == 'x64'"
>
X64
</_Machine>
<_Machine
Condition=
"$(Platform) == 'ARM'"
>
ARM
</_Machine>
<_Machine
Condition=
"$(Platform) == 'ARM64'"
>
ARM64
</_Machine>
<ExtensionsToDeleteOnClean>
$(ExtensionsToDeleteOnClean);$(IntDir)python3_d.def;$(IntDir)python3stub.def
</ExtensionsToDeleteOnClean>
</PropertyGroup>
<ItemDefinitionGroup>
...
...
PCbuild/pythoncore.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/pythonw.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/pywlauncher.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/select.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/sqlite3.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/unicodedata.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/venvlauncher.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/venvwlauncher.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/winsound.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
PCbuild/xxlimited.vcxproj
View file @
f96e7fd9
...
...
@@ -5,6 +5,10 @@
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -17,6 +21,10 @@
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|ARM64"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGInstrument|Win32"
>
<Configuration>
PGInstrument
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -29,6 +37,10 @@
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|ARM64"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"PGUpdate|Win32"
>
<Configuration>
PGUpdate
</Configuration>
<Platform>
Win32
</Platform>
...
...
@@ -41,6 +53,10 @@
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
...
...
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