Skip to content

Commit

Permalink
Move libblas_name/liblapack_name to after Sys module
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed Feb 3, 2023
1 parent d5911c0 commit f2d7055
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions base/Base.jl
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,6 @@ end
include(strcat((length(Core.ARGS)>=2 ? Core.ARGS[2] : ""), "build_h.jl")) # include($BUILDROOT/base/build_h.jl)
include(strcat((length(Core.ARGS)>=2 ? Core.ARGS[2] : ""), "version_git.jl")) # include($BUILDROOT/base/version_git.jl)

# These used to be in build_h.jl and are retained for backwards compatibility.
# NOTE: keep in sync with `libblastrampoline_jll.libblastrampoline`.
const libblas_name = "libblastrampoline" * (Sys.iswindows() ? "-5" : "")
const liblapack_name = libblas_name

# numeric operations
include("hashing.jl")
include("rounding.jl")
Expand Down Expand Up @@ -291,6 +286,11 @@ include("sysinfo.jl")
include("libc.jl")
using .Libc: getpid, gethostname, time

# These used to be in build_h.jl and are retained for backwards compatibility.
# NOTE: keep in sync with `libblastrampoline_jll.libblastrampoline`.
const libblas_name = "libblastrampoline" * (Sys.iswindows() ? "-5" : "")
const liblapack_name = libblas_name

# Logging
include("logging.jl")
using .CoreLogging
Expand Down

0 comments on commit f2d7055

Please sign in to comment.