GH-113464: Display a warning when building the JIT (GH-118481)

This commit is contained in:
Brandt Bucher 2024-05-01 14:35:49 -07:00 committed by GitHub
parent 39981fd07a
commit 424438b11e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 38 additions and 26 deletions

View file

@ -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)