Skip to content

Commit 5bdbda3

Browse files
committed
moving things not in system image out of jl/
move arpack to extras
1 parent 2c5158a commit 5bdbda3

File tree

11 files changed

+5
-5
lines changed

11 files changed

+5
-5
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

jl/client.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ function _start()
198198
end
199199

200200
global const VARIABLES = {}
201-
global const LOAD_PATH = String["", "$JULIA_HOME/", "$JULIA_HOME/jl/", "$JULIA_HOME/extras/"]
201+
global const LOAD_PATH = String["", "$JULIA_HOME/", "$JULIA_HOME/extras/"]
202202

203203
# Load customized startup
204204
try include(strcat(getcwd(),"/startup.jl")) end

jl/start_image.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ _jl_librandom = dlopen("librandom"); _jl_librandom_init();
1717
# Optional libraries
1818
_jl_libblas = dlopen("liblapack")
1919
_jl_liblapack = _jl_libblas
20-
_jl_libarpack = dlopen("libarpack")
2120
_jl_libfftw = dlopen("libfftw3")
2221
_jl_libfftwf = dlopen("libfftw3f")
2322
_jl_libsuitesparse = dlopen("libsuitesparse");

jl/sysimg.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ include("datafmt.jl")
9191
include("linalg.jl")
9292
include("linalg_blas.jl")
9393
include("linalg_lapack.jl")
94-
include("linalg_arpack.jl")
9594
include("linalg_suitesparse.jl")
9695

9796
# signal processing

test/arpack.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
load("../extras/arpack.jl")
2+
13
# arpack
24
n = 10
35
a = rand(n,n)

test/bigfloat.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
load ("../jl/bigfloat.jl")
2+
load ("../extras/bigfloat.jl")
33
a=BigFloat("12.34567890121")
44
b=BigFloat("12.34567890122")
55

0 commit comments

Comments
 (0)