Skip to content

Commit 13bfc68

Browse files
print config args
1 parent f5bf9cd commit 13bfc68

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Tools/jit/_targets.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ def build(self, out: pathlib.Path, *, force: bool = False) -> None:
236236
match = re.search(r"CONFIG_ARGS\s*=\s*'(.*)'", makefile.read_text())
237237
assert match is not None
238238
config_args = match.group(1)
239+
print(config_args)
239240
if config_args:
240241
copy_stencils = all(
241242
arg in JIT_ARGS for arg in config_args.split()

0 commit comments

Comments
 (0)