Skip to content

Commit

Permalink
moving things not in system image out of jl/
Browse files Browse the repository at this point in the history
move arpack to extras
  • Loading branch information
JeffBezanson committed Mar 19, 2012
1 parent 2c5158a commit 5bdbda3
Show file tree
Hide file tree
Showing 11 changed files with 5 additions and 5 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion jl/client.jl
Expand Up @@ -198,7 +198,7 @@ function _start()
end

global const VARIABLES = {}
global const LOAD_PATH = String["", "$JULIA_HOME/", "$JULIA_HOME/jl/", "$JULIA_HOME/extras/"]
global const LOAD_PATH = String["", "$JULIA_HOME/", "$JULIA_HOME/extras/"]

# Load customized startup
try include(strcat(getcwd(),"/startup.jl")) end
Expand Down
1 change: 0 additions & 1 deletion jl/start_image.jl
Expand Up @@ -17,7 +17,6 @@ _jl_librandom = dlopen("librandom"); _jl_librandom_init();
# Optional libraries
_jl_libblas = dlopen("liblapack")
_jl_liblapack = _jl_libblas
_jl_libarpack = dlopen("libarpack")
_jl_libfftw = dlopen("libfftw3")
_jl_libfftwf = dlopen("libfftw3f")
_jl_libsuitesparse = dlopen("libsuitesparse");
Expand Down
1 change: 0 additions & 1 deletion jl/sysimg.jl
Expand Up @@ -91,7 +91,6 @@ include("datafmt.jl")
include("linalg.jl")
include("linalg_blas.jl")
include("linalg_lapack.jl")
include("linalg_arpack.jl")
include("linalg_suitesparse.jl")

# signal processing
Expand Down
2 changes: 2 additions & 0 deletions test/arpack.jl
@@ -1,3 +1,5 @@
load("../extras/arpack.jl")

# arpack
n = 10
a = rand(n,n)
Expand Down
2 changes: 1 addition & 1 deletion test/bigfloat.jl
@@ -1,5 +1,5 @@

load ("../jl/bigfloat.jl")
load ("../extras/bigfloat.jl")
a=BigFloat("12.34567890121")
b=BigFloat("12.34567890122")

Expand Down
2 changes: 1 addition & 1 deletion test/bigint.jl
@@ -1,5 +1,5 @@

load ("../jl/bigint.jl")
load ("../extras/bigint.jl")
a=BigInt("123456789012345678901234567890")
b=BigInt("123456789012345678901234567891")

Expand Down

1 comment on commit 5bdbda3

@ViralBShah
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should also move the relevant stuff out of external/Makefile into extras/Makefile.

Please sign in to comment.