Skip to content

Commit

Permalink
Fix version criterion for build vs. LBT (#79)
Browse files Browse the repository at this point in the history
Previous criterion would erroneously abort the build process for julia
1.6.1.
  • Loading branch information
danielwe authored May 25, 2021
1 parent d0b2c05 commit 2ec07cc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion deps/build.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
if VERSION > v"1.6"
using MKL

if VERSION > MKL.JULIA_VER_NEEDED
exit() # Don't want to build the system image, since we will use LBT
end

Expand Down

0 comments on commit 2ec07cc

Please sign in to comment.