Skip to content

Commit d3a87f4

Browse files
authored
[Auditor] Ignore yet more system libraries (#1201)
1 parent e3c8a53 commit d3a87f4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "BinaryBuilder"
22
uuid = "12aac903-9f7c-5d81-afc2-d9565ea332ae"
33
authors = ["Elliot Saba <[email protected]>"]
4-
version = "0.5.2"
4+
version = "0.5.3"
55

66
[deps]
77
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"

src/auditor/dynamic_linkage.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ function should_ignore_lib(lib, ::ELFHandle, platform::AbstractPlatform)
196196
push!(ignore_libs,
197197
# Part of Glibc
198198
"libresolv.so.2",
199+
"libutil.so.1",
199200
)
200201
end
201202
return lowercase(basename(lib)) in ignore_libs
@@ -213,6 +214,7 @@ function should_ignore_lib(lib, ::MachOHandle, platform::AbstractPlatform)
213214
"corefoundation",
214215
"coremidi",
215216
"coreservices",
217+
"diskarbitration",
216218
"foundation",
217219
"iokit",
218220
"metal",

0 commit comments

Comments
 (0)