We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bd57ad8 + f23b848 commit 1c959c2Copy full SHA for 1c959c2
Library/Homebrew/utils/pid_path.rb
@@ -7,7 +7,9 @@
7
8
require "fiddle"
9
10
-libproc = Fiddle.dlopen("/usr/lib/libproc.dylib")
+# Canonically, this is a part of libproc.dylib. libproc is however just a symlink to libSystem
11
+# and some security tools seem to not support aliases from the dyld shared cache and incorrectly flag this.
12
+libproc = Fiddle.dlopen("/usr/lib/libSystem.B.dylib")
13
14
libproc_proc_pidpath_function = Fiddle::Function.new(
15
libproc["proc_pidpath"],
0 commit comments