go: ignore unresolved library (#50072)

This commit is contained in:
Wouter Deconinck 2025-04-16 06:09:37 -05:00 committed by GitHub
parent 883bbf3826
commit 25d8e95ad4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,6 +33,7 @@ class Go(Package):
extendable = True
executables = ["^go$"]
unresolved_libraries = ["libtiff.so.*"] # go/src/debug/elf/testdata/libtiffxx.so_
maintainers("alecbcs")