From: Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) Date: Tue, 6 Sep 2016 23:56:54 +0000 (+0000) Subject: Fixes issue26307: The profile-opt build now applys PGO to the built-in X-Git-Tag: v3.6.0b1~384^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=653c8509191623951ca7d0091f470d3632034d84;p=thirdparty%2FPython%2Fcpython.git Fixes issue26307: The profile-opt build now applys PGO to the built-in modules. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index c9aa13a7a0d9..f07c28282291 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1595,7 +1595,7 @@ clean: pycremoval -rm -f pybuilddir.txt -rm -f Lib/lib2to3/*Grammar*.pickle -rm -f Programs/_testembed Programs/_freeze_importlib - -rm -rf build + -find build -type f -a ! -name '*.gc??' -exec rm -f {} ';' profile-removal: find . -name '*.gc??' -exec rm -f {} ';' diff --git a/Misc/NEWS b/Misc/NEWS index 816e426bcbfd..7c62a15bd834 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,8 @@ Release date: TBA Core and Builtins ----------------- +- Issue #26307: The profile-opt build now applys PGO to the built-in modules. + - Issue #27812: Properly clear out a generator's frame's backreference to the generator to prevent crashes in frame.clear().