From d65b05f1d219860d578da2b06fd0a960b72e4fbe Mon Sep 17 00:00:00 2001 From: igor Date: Mon, 9 Mar 2026 14:18:11 +0100 Subject: [PATCH] small fix to the function responsible for hashing the compiler flags --- main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index cdf44b2..762f0e1 100644 --- a/main.py +++ b/main.py @@ -7596,6 +7596,7 @@ class BuildCache: folding: bool, static_list_folding: bool, peephole: bool, + auto_inline: bool, entry_mode: str, ) -> str: # Include the compiler's own mtime so any change to main.py @@ -7606,7 +7607,8 @@ class BuildCache: compiler_mtime = 0 return self._hash_str( f"debug={debug},folding={folding},static_list_folding={static_list_folding}," - f"peephole={peephole},entry_mode={entry_mode},compiler_mtime={compiler_mtime}" + f"peephole={peephole},auto_inline={auto_inline}," + f"entry_mode={entry_mode},compiler_mtime={compiler_mtime}" ) def _file_info(self, path: Path) -> dict: