|
4 | 4 | baremodule PCRE2_jll |
5 | 5 | using Base, Libdl |
6 | 6 |
|
7 | | -const PATH_list = String[] |
8 | | -const LIBPATH_list = String[] |
9 | | - |
10 | 7 | export libpcre2_8 |
11 | 8 |
|
12 | 9 | # These get calculated in __init__() |
13 | 10 | const PATH = Ref("") |
| 11 | +const PATH_list = String[] |
14 | 12 | const LIBPATH = Ref("") |
| 13 | +const LIBPATH_list = String[] |
15 | 14 | artifact_dir::String = "" |
16 | | -libpcre2_8_handle::Ptr{Cvoid} = C_NULL |
17 | 15 | libpcre2_8_path::String = "" |
18 | 16 |
|
19 | 17 | if Sys.iswindows() |
20 | | - const libpcre2_8 = "libpcre2-8-0.dll" |
| 18 | + const _libpcre2_8_path = BundledLazyLibraryPath("libpcre2-8-0.dll") |
21 | 19 | elseif Sys.isapple() |
22 | | - const libpcre2_8 = "@rpath/libpcre2-8.0.dylib" |
| 20 | + const _libpcre2_8_path = BundledLazyLibraryPath("libpcre2-8.0.dylib") |
23 | 21 | else |
24 | | - const libpcre2_8 = "libpcre2-8.so.0" |
| 22 | + const _libpcre2_8_path = BundledLazyLibraryPath("libpcre2-8.so.0") |
25 | 23 | end |
26 | 24 |
|
| 25 | +const libpcre2_8 = LazyLibrary(_libpcre2_8_path) |
| 26 | + |
| 27 | +function eager_mode() |
| 28 | + dlopen(libpcre2_8) |
| 29 | +end |
| 30 | +is_available() = true |
| 31 | + |
27 | 32 | function __init__() |
28 | | - global libpcre2_8_handle = dlopen(libpcre2_8) |
29 | | - global libpcre2_8_path = dlpath(libpcre2_8_handle) |
| 33 | + global libpcre2_8_path = string(_libpcre2_8_path) |
30 | 34 | global artifact_dir = dirname(Sys.BINDIR) |
31 | 35 | LIBPATH[] = dirname(libpcre2_8_path) |
32 | 36 | push!(LIBPATH_list, LIBPATH[]) |
33 | 37 | end |
34 | 38 |
|
35 | | -# JLLWrappers API compatibility shims. Note that not all of these will really make sense. |
36 | | -# For instance, `find_artifact_dir()` won't actually be the artifact directory, because |
37 | | -# there isn't one. It instead returns the overall Julia prefix. |
38 | | -is_available() = true |
39 | | -find_artifact_dir() = artifact_dir |
40 | | -dev_jll() = error("stdlib JLLs cannot be dev'ed") |
41 | | -best_wrapper = nothing |
42 | | -get_libpcre2_8_path() = libpcre2_8_path |
43 | | - |
44 | 39 | end # module PCRE2_jll |
0 commit comments