Skip to content

Commit 1c4c01b

Browse files
committed
Explicitly import Libdl
JuliaLang/julia#25459 moved `Libdl` to the stdlib, which means that we need to explicitly import it now before we can do things like `Libdl.dlopen()`.
1 parent 36a1dc5 commit 1c4c01b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/BinaryBuilder.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
module BinaryBuilder
55
using Compat
66
using Reexport
7+
8+
if VERSION >= v"0.7.0-DEV.3382"
9+
import Libdl
10+
end
711
@reexport using BinaryProvider
812

913
include("Auditor.jl")

0 commit comments

Comments
 (0)