2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-09-05 15:29:42 -07:00
|
|
|
class LinkageChecker
|
|
|
|
# Libraries provided by glibc and gcc.
|
2020-06-06 19:12:12 +01:00
|
|
|
SYSTEM_LIBRARY_ALLOWLIST = %w[
|
2018-09-05 15:29:42 -07:00
|
|
|
ld-linux-x86-64.so.2
|
|
|
|
libanl.so.1
|
|
|
|
libc.so.6
|
|
|
|
libcrypt.so.1
|
|
|
|
libdl.so.2
|
|
|
|
libm.so.6
|
|
|
|
libmvec.so.1
|
|
|
|
libnsl.so.1
|
|
|
|
libpthread.so.0
|
|
|
|
libresolv.so.2
|
|
|
|
librt.so.1
|
2019-12-05 21:44:07 +01:00
|
|
|
libthread_db.so.1
|
2018-09-05 15:29:42 -07:00
|
|
|
libutil.so.1
|
|
|
|
|
|
|
|
libgcc_s.so.1
|
|
|
|
libgomp.so.1
|
|
|
|
libstdc++.so.6
|
|
|
|
].freeze
|
|
|
|
|
|
|
|
def check_dylibs(rebuild_cache:)
|
|
|
|
generic_check_dylibs(rebuild_cache: rebuild_cache)
|
|
|
|
|
|
|
|
# glibc and gcc are implicit dependencies.
|
|
|
|
# No other linkage to system libraries is expected or desired.
|
|
|
|
@unwanted_system_dylibs = @system_dylibs.reject do |s|
|
2020-06-06 19:12:12 +01:00
|
|
|
SYSTEM_LIBRARY_ALLOWLIST.include? File.basename(s)
|
2018-09-05 15:29:42 -07:00
|
|
|
end
|
|
|
|
@undeclared_deps -= ["gcc", "glibc"]
|
|
|
|
end
|
|
|
|
end
|