JuliaIO / MAT.jl

Julia module for reading MATLAB files
MIT License
278 stars 71 forks source link

Precompile error on Julia 1.2, Mac OS 10.14.6 #126

Closed kierkegaar closed 4 years ago

kierkegaar commented 4 years ago

Installed MAT 0.6.0, on Julia 1.2, Mac OS 10.14.6 using MAT [ Info: Precompiling MAT [23992714-dd62-5051-b70f-ba57cb901cac] ERROR: LoadError: LoadError: error compiling version: could not load library "libz" dlopen(libz.dylib, 1): image not found

kierkegaar commented 4 years ago

The following solved this issue:

using Pkg Pkg.add("Libdl") using Libdl push!(Libdl.DL_LOAD_PATH,"/usr/lib")