Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 478fb33f559ad7976399498e681a2b4667b86d69
      
https://github.com/WebKit/WebKit/commit/478fb33f559ad7976399498e681a2b4667b86d69
  Author: David Kilzer <[email protected]>
  Date:   2026-02-14 (Sat, 14 Feb 2026)

  Changed paths:
    M Makefile.shared

  Log Message:
  -----------
  Static analyzer report processing is slow due to inefficient find+mv command
<https://bugs.webkit.org/show_bug.cgi?id=307912>
<rdar://170399490>

Reviewed by Ryosuke Niwa.

The `analyze` target uses an inefficient `find -exec mv {} \;` command
that spawns a new `mv` process for each report file found.  With hundreds
of report-*.html files generated during static analysis, this creates
significant performance overhead.

Replace the inefficient per-file `mv` execution with batched execution
using `find -exec sh -c 'mv ...' ... +`, which processes multiple files
in a single `mv` invocation instead of spawning hundreds of separate
processes.

* Makefile.shared:
(analyze):

Canonical link: https://commits.webkit.org/307589@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications

Reply via email to