We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf8976f commit 26ed286Copy full SHA for 26ed286
src/blas.jl
@@ -159,8 +159,9 @@ function check()
159
interface = USE_BLAS64 ? :ilp64 : :lp64
160
if !any(lib.interface == interface for lib in config.loaded_libs)
161
interfacestr = uppercase(string(interface))
162
- @error("No loaded BLAS libraries were built with $interfacestr support.")
163
- exit(1)
+ @error("No loaded BLAS libraries were built with $(interfacestr) support")
+ println("Quitting.")
164
+ exit()
165
end
166
167
0 commit comments