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.
1 parent aa592e2 commit 7bf2956Copy full SHA for 7bf2956
test/stdlib_dependencies.jl
@@ -83,7 +83,8 @@ function get_deps_readelf(lib_path::String)
83
libs = split(readchomp(`readelf -d $(lib_path)`), "\n")
84
85
# Only keep `(NEEDED)` lines
86
- libs = filter(l -> occursin("(NEEDED)", l), libs)
+ needed_str = Sys.isfreebsd() ? "NEEDED" : "(NEEDED)"
87
+ libs = filter(l -> occursin(needed_str, l), libs)
88
89
# Grab the SONAME from "Shared library: [$SONAME]"
90
libs = map(libs) do lib
0 commit comments