-
Notifications
You must be signed in to change notification settings - Fork 38
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
Error UndefVarError: @compiler_options not defined #137
Comments
Your fix seems correct. |
Hello. I've just started working on this. I found that in the master branch of julia repo, stdlibs are still referencing this under |
I was using the default environment for Julia 1.3.1. The older versions of Julia don't have @compiler_options defined in Base.Experimental. When I raised this issue, I hadn't realized that I had reverted to an older version, so I assumed @compiler_options must have been deleted. Now that I'm back to Julia 1.6.1 the error doesn't occur. I'm sorry for the confusion! |
I am using |
@hofmannmartin can you try the latest version of MLStyle? |
works like a charm with the latest Version. Thank you. |
@CourtA96 I think 0.4.13 works for Julia 1.0-1.8, could you help verify this? I want to close this issue. |
Yes, it's working for me now in Julia 1.3.1. Thanks! |
The
@compiler_options
macro is no longer defined inBase.Experimental
, which causes an UndefValError when precompiling MLStyle. I forked the package and changed every line that read:to
and that seemed to fix the issue for me. I don't know if this fix impacts the functioning of the package though.
The text was updated successfully, but these errors were encountered: