-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
New test "correctly print values to error messages" fails on Windows #6016
Comments
Does not appear to have fixed the problem.
|
Thanks for checking. @vtjnash the |
There shouldn't be any difference in behavior |
It seems to be falling back to printing |
Ah yes. It's much harder to get the dynamic linker to find functions on windows since you have to tell it exactly where to look |
Actually, on windows, we don't even attempt to look since RTLD_SELF and RTLD_DEFAULT are not defined (and we wouldn't find the |
flisp is statically linked inside libjulia (libflisp.a). |
2-years-old bump. This still gives
on Windows. Should we be able to do better with libflisp linked into libjulia? This was marked 0.4.x... |
This recently added test is failing on Windows.
The output of
expand(parse("\"a\"=1"))
with the most recent Windows prerelease binary or my own freshly-built Julia is:($(Expr(:error, "invalid assignment location \"alue\"")))
. On the 0.2.0 release, it is:($(Expr(:error, "invalid assignment location #<julia_value>")))
.The text was updated successfully, but these errors were encountered: