Skip to content

Commit 606055a

Browse files
authored
[Auditor] Ignore more system libraries (#1206)
1 parent ec172f4 commit 606055a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/auditor/dynamic_linkage.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,14 +204,17 @@ end
204204
function should_ignore_lib(lib, ::MachOHandle, platform::AbstractPlatform)
205205
ignore_libs = [
206206
"libsystem.b.dylib",
207+
"libobjc.a.dylib",
207208
# This is not built by clang or GCC, so we leave it as a system library
208209
"libc++.1.dylib",
209210
"libresolv.9.dylib",
210211
# Frameworks in the SDK
211212
"appkit",
213+
"carbon",
212214
"cocoa",
213215
"coreaudio",
214216
"corefoundation",
217+
"coregraphics",
215218
"coremidi",
216219
"coreservices",
217220
"diskarbitration",
@@ -220,6 +223,7 @@ function should_ignore_lib(lib, ::MachOHandle, platform::AbstractPlatform)
220223
"metal",
221224
"metalkit",
222225
"opencl",
226+
"opengl",
223227
"quartzcore",
224228
"security",
225229
"systemconfiguration",

0 commit comments

Comments
 (0)