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

Skip to content

gh-99289: Add COMPILEALL_OPTS to Makefile #99291

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 14, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
reword news
  • Loading branch information
gpshead authored Nov 13, 2022
commit 7b34b8f247bce4c858cb31c553b90ecfb43fce33
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Add ``COMPILEALL_OPTS`` variable in Makefile to override :mod:`compileall`
options (default: ``-j0``) in ``make install``. Merge also the 3 ``compileall``
commands into a single command building PYC files for the 3 optimization levels
(0, 1, 2). Patch by Victor Stinner.
Add a ``COMPILEALL_OPTS`` variable in Makefile to override :mod:`compileall`
options (default: ``-j0``) in ``make install``. Also merged the ``compileall``
commands into a single command building .pyc files for the all optimization levels
(0, 1, 2) at once. Patch by Victor Stinner.