-
-
Notifications
You must be signed in to change notification settings - Fork 194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue compiling Distances.jl #131
Comments
@vtjnash can you please evaluate this? Should we add |
hm, that codepath was supposed to get deprecated in v1.0, so we didn't put any effort into making it correct |
If it helps, the problem line is: |
I'm having the same problem with that line. If you comment that line out, it should work. It's a call to create documentation. It doesn't seem essential to it's functionality. Does anyone know if there's an issue with the macro Should be noted, that with a recent update to Distances.jl the troubling line is now 336 of metrics.jl |
Seen with current 1.1 as well. |
Trying to compile Distances gives the following error:
The error is coming from here: /~https://github.com/JuliaLang/julia/blob/a5bfabccd8d9c351cc3b0026992fe7314ff022db/base/docs/Docs.jl#L500
because
Base.REPL_MODULE_REF
is not initialized. I can fix it by addingusing REPL; REPL.__init__()
here: /~https://github.com/JuliaLang/PackageCompiler.jl/blob/master/src/static_julia.jl#L246but I'm not sure if that's the right resolution. Thoughts?
The text was updated successfully, but these errors were encountered: