linkage_checker: remove gcc from @indirect_deps on Linux

Closes #17303.
This commit is contained in:
Carlo Cabrera 2024-05-16 00:47:21 +08:00
parent 56db99ee9f
commit cc65e5419d
No known key found for this signature in database
GPG Key ID: C74D447FC549A1D0

View File

@ -45,5 +45,6 @@ class LinkageChecker
# https://github.com/Homebrew/brew/pull/13796 # https://github.com/Homebrew/brew/pull/13796
# TODO: Find a nicer way to handle this. (e.g. examining the ELF file to determine the required libstdc++.) # TODO: Find a nicer way to handle this. (e.g. examining the ELF file to determine the required libstdc++.)
@undeclared_deps.delete("gcc") @undeclared_deps.delete("gcc")
@indirect_deps.delete("gcc")
end end
end end