()
| 289 | _bdir = build_dir |
| 290 | |
| 291 | def _touch_dlls_bg() -> None: |
| 292 | try: |
| 293 | touched = _opt.touch_dlls_if_lib_unchanged( |
| 294 | _bdir |
| 295 | ) |
| 296 | if touched > 0: |
| 297 | _ts_print( |
| 298 | f"[BUILD] ⚡ Suppressed {touched} DLL relinks" |
| 299 | f" (fastled shared lib content unchanged)" |
| 300 | ) |
| 301 | finally: |
| 302 | dll_touch_done.set() |
| 303 | |
| 304 | dll_touch_done.clear() |
| 305 | threading.Thread( |
nothing calls this directly
no test coverage detected