-
-
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
Base.path_absolute_re does not match anything #5175
Comments
What's your |
Well, it's a little... funny. julia> versioninfo()
ERROR: invalid build identifier: ""
in error at error.jl:22
in VersionNumber at version.jl:30
in print at version.jl:42
in print_to_string at string.jl:23
in versioninfo at util.jl:322 (repeats 2 times) More seriously (that's another bug I have to fix), this is version 0.2.0 64-bit on Fedora 20, built against system libraries. |
Ah, that's, um, interesting. Something very weird seems to be going on with this build. |
@nalimilan If you can show me or @staticfloat your build process and your |
Interesting. I rebuilt the package since I've upgraded to Fedora 20, and both issues are gone (paths and version info). Looks like an updated PCRE was not fully ABI-compatible... |
That explains. I could not figure out how the The PCRE compatibility issue might be fixed when/if #5066 gets merged. |
isabspath()
andisdirpath()
always returnfalse
in my RPM install of Julia. The git build works fine. This is a problem because JULIA_HOME is not considered as an absolute path though it is set to "/usr/bin", and thus Pkg.dir() is set to /home/user//home/user/.julia.The problem is that Base.path_absolute_re (and other path regexps) is completely wrong. Could that be due to a problem with pcre on load? Or to a bad locale?
The text was updated successfully, but these errors were encountered: