mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
GH-113464: Display a warning when building the JIT (GH-118481)
This commit is contained in:
parent
39981fd07a
commit
424438b11e
6 changed files with 38 additions and 26 deletions
|
@ -1,4 +1,5 @@
|
|||
"""Build an experimental just-in-time compiler for CPython."""
|
||||
|
||||
import argparse
|
||||
import pathlib
|
||||
import shlex
|
||||
|
@ -23,6 +24,5 @@ if __name__ == "__main__":
|
|||
)
|
||||
args = parser.parse_args()
|
||||
args.target.debug = args.debug
|
||||
args.target.force = args.force
|
||||
args.target.verbose = args.verbose
|
||||
args.target.build(pathlib.Path.cwd(), comment=comment)
|
||||
args.target.build(pathlib.Path.cwd(), comment=comment, force=args.force)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue