Skip to content

Commit cc8e997

Browse files
committed
WORD_SIZE is deprecated
1 parent c014e51 commit cc8e997

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/jvm.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ function findjvm()
5959
push!(libpaths, joinpath(n, "bin", "client"))
6060
end
6161
@static if is_linux()
62-
if WORD_SIZE==64
62+
if Sys.WORD_SIZE==64
6363
push!(libpaths, joinpath(n, "jre", "lib", "amd64", "server"))
64-
elseif WORD_SIZE==32
64+
elseif Sys.WORD_SIZE==32
6565
push!(libpaths, joinpath(n, "jre", "lib", "i386", "server"))
6666
end
6767
end

0 commit comments

Comments
 (0)