linux/linkage_checker: remove gcc from undeclared_deps

This is causing warnings all over Homebrew/homebrew-core.

For example, there are dozens of warnings about this in the following CI
run:

    https://github.com/Homebrew/homebrew-core/runs/8116257943?check_suite_focus=true
This commit is contained in:
Carlo Cabrera 2022-09-02 14:28:07 +08:00
parent 39d9f14dc8
commit ef7c9cf17c
No known key found for this signature in database
GPG Key ID: C74D447FC549A1D0

View File

@ -80,5 +80,7 @@ class LinkageChecker
@unwanted_system_dylibs = @system_dylibs.reject do |s| @unwanted_system_dylibs = @system_dylibs.reject do |s|
SYSTEM_LIBRARY_ALLOWLIST.include? File.basename(s) SYSTEM_LIBRARY_ALLOWLIST.include? File.basename(s)
end end
@undeclared_deps.delete("gcc")
end end
end end