Skip to content

Commit 26ed286

Browse files
Revert "small changes to make Base more statically compileable" (#53808)
Reverts JuliaLang/julia#53778 which appears to have introduced a windows failure See JuliaLang/julia#53778 (comment)
1 parent cf8976f commit 26ed286

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/blas.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,9 @@ function check()
159159
interface = USE_BLAS64 ? :ilp64 : :lp64
160160
if !any(lib.interface == interface for lib in config.loaded_libs)
161161
interfacestr = uppercase(string(interface))
162-
@error("No loaded BLAS libraries were built with $interfacestr support.")
163-
exit(1)
162+
@error("No loaded BLAS libraries were built with $(interfacestr) support")
163+
println("Quitting.")
164+
exit()
164165
end
165166
end
166167

0 commit comments

Comments
 (0)