Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 17cfc86

Browse files
committed
Issue #27713: Surpress spurious build warnings when updating importlib's
bootstrap files: Could not find platform dependent libraries <exec_prefix Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>] Patch by Xiang Zhang
1 parent 6902ddf commit 17cfc86

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

Misc/NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,9 @@ Windows
177177
Build
178178
-----
179179

180+
- Issue #27713: Surpress spurious build warnings when updating importlib's
181+
bootstrap files. Patch by Xiang Zhang
182+
180183
- Issue #25825: Correct the references to Modules/python.exp, which is
181184
required on AIX. The references were accidentally changed in 3.5.0a1.
182185

Programs/_freeze_importlib.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ main(int argc, char *argv[])
7777
Py_NoUserSiteDirectory++;
7878
Py_NoSiteFlag++;
7979
Py_IgnoreEnvironmentFlag++;
80+
Py_FrozenFlag++;
8081

8182
Py_SetProgramName(L"./_freeze_importlib");
8283
/* Don't install importlib, since it could execute outdated bytecode. */

0 commit comments

Comments
 (0)