We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_Target._compute_digest
1 parent 7d12a8a commit a6cfd1fCopy full SHA for a6cfd1f
Tools/jit/_targets.py
@@ -63,6 +63,7 @@ def _compute_digest(self, out: pathlib.Path) -> str:
63
hasher = hashlib.sha256()
64
hasher.update(self.triple.encode())
65
hasher.update(self.debug.to_bytes())
66
+ hasher.update(self.cflags.encode())
67
# These dependencies are also reflected in _JITSources in regen.targets:
68
hasher.update(PYTHON_EXECUTOR_CASES_C_H.read_bytes())
69
hasher.update((out / "pyconfig.h").read_bytes())
0 commit comments