summaryrefslogtreecommitdiffstats
path: root/PCbuild/_freeze_importlib.vcxproj
Commit message (Collapse)AuthorAgeFilesLines
* bpo-45019: Add a tool to generate list of modules to include for frozen ↵Eric Snow2021-08-301-159/+0
| | | | | | | modules (gh-27980) Frozen modules must be added to several files in order to work properly. Before this change this had to be done manually. Here we add a tool to generate the relevant lines in those files instead. This helps us avoid mistakes and omissions. https://bugs.python.org/issue45019
* bpo-44479: Regenerate test_frozenmain.h and frozen_hello.h during build on ↵Steve Dower2021-07-051-8/+6
| | | | Windows (GH-26984)
* bpo-43567: Improved generated code refresh on Windows (GH-25120)Steve Dower2021-04-061-3/+5
| | | Generated files are now refreshed automatically on regular build, or may be forcibly regenerated by calling `build.bat --regen`.
* bpo-36941: Windows build changes for Windows ARM64 (GH-13365)Paul Monson2019-05-171-0/+16
|
* bpo-36448: mention 'make regen-all' in error message (GH-12585)Jeroen Demeyer2019-03-291-2/+2
|
* bpo-35976: Enable Windows projects to build with platform ARM32 (GH-11825)Paul Monson2019-02-141-0/+16
| | | This change adds the necessary items to the build projects to avoid erroring out right at the start. It does not add _support_ for targeting Windows on ARM32, but is a necessary prerequisite for adding it.
* bpo-25711: Rewrite zipimport in pure Python. (GH-6809)Serhiy Storchaka2018-09-181-1/+9
|
* Issue #28896: Disable WindowsRegistryFinder by default.Steve Dower2016-12-121-12/+25
|
* Issue #23461: Normalise line endings when comparing old and new contents of ↵Steve Dower2015-02-141-2/+2
| | | | importlib.h
* Issue #23260: Update Windows installerSteve Dower2015-02-061-4/+5
|
* Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), ↵Steve Dower2014-11-221-126/+43
| | | | which will be used for the official 3.5 release.
* Issue #18093: Factor out the programs that embed the runtimeNick Coghlan2014-07-251-2/+2
|
* Issue #15431: Add _freeze_importlib project to regenerate importlib.h on ↵Martin v. Löwis2012-07-281-0/+188
Windows. Patch by Kristján Valur Jónsson.