diff --git a/README.md b/README.md index f4d1957..2c7002f 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ If you already have an Intel MKL installation available (as on most HPC clusters * `system`: The package will try to automatically locate the libmkl_rt library (i.e. find it on the linker search path). * `path/to/my/libmkl_rt.`: Explicit path to the `libmkl_rt.` where `` is the shared library extension of the system at hand (e.g. `.so`, `.dll`, `.dylib`) -Note that, in contrast to the preference, the environment variable only has an effect when MKL.jl is (re-)precompiled. To force a change of the MKL path after the compilation has happened, use the function `MKL.set_mkl_path`, which takes the options listed above as input. +Note that, in contrast to the preference, the environment variable only has an effect when MKL.jl is (re-)precompiled. To force a change of the MKL path after the compilation has happened, use the function `MKL.set_mkl_path`, which takes the options listed above as input. The usecase for the environment variable convenience is for automated installs such as CI systems, where the initial default choice should be set with no human interaction whatsoever. ## Installation (Julia 1.6 and older) diff --git a/deps/build.jl b/deps/build.jl index 7fdd199..194cd86 100644 --- a/deps/build.jl +++ b/deps/build.jl @@ -1,11 +1,11 @@ using MKL if MKL.is_lbt_available() - @info "Using LBT" + @info "Using LBT, so exiting MKL build step immediately" exit() # Don't want to build the system image, since we will use LBT end -@info "Using PackageCompiler" +@info "LBT unavailable, so using PackageCompiler, to construct MKL-compatible system image" using PackageCompiler using MKL_jll