Skip to content

Commit f2d7055

Browse files
committed
Move libblas_name/liblapack_name to after Sys module
1 parent d5911c0 commit f2d7055

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

base/Base.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -186,11 +186,6 @@ end
186186
include(strcat((length(Core.ARGS)>=2 ? Core.ARGS[2] : ""), "build_h.jl")) # include($BUILDROOT/base/build_h.jl)
187187
include(strcat((length(Core.ARGS)>=2 ? Core.ARGS[2] : ""), "version_git.jl")) # include($BUILDROOT/base/version_git.jl)
188188

189-
# These used to be in build_h.jl and are retained for backwards compatibility.
190-
# NOTE: keep in sync with `libblastrampoline_jll.libblastrampoline`.
191-
const libblas_name = "libblastrampoline" * (Sys.iswindows() ? "-5" : "")
192-
const liblapack_name = libblas_name
193-
194189
# numeric operations
195190
include("hashing.jl")
196191
include("rounding.jl")
@@ -291,6 +286,11 @@ include("sysinfo.jl")
291286
include("libc.jl")
292287
using .Libc: getpid, gethostname, time
293288

289+
# These used to be in build_h.jl and are retained for backwards compatibility.
290+
# NOTE: keep in sync with `libblastrampoline_jll.libblastrampoline`.
291+
const libblas_name = "libblastrampoline" * (Sys.iswindows() ? "-5" : "")
292+
const liblapack_name = libblas_name
293+
294294
# Logging
295295
include("logging.jl")
296296
using .CoreLogging

0 commit comments

Comments
 (0)