-
-
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
Update libosxunwind to v0.0.4 #30153
Conversation
db5c0ab
to
efb2801
Compare
It sure would be nice to have working macOS CI for this. |
Is there an open issue for the macOS CI or is this a new problem? |
It's relatively new, not introduced here, but I don't think there's an open issue for it. Not sure what the issue actually is. Looking at the raw Travis log, the build and all tests actually completed successfully. |
d2142bf
to
9e58d86
Compare
Looks like macOS CI is working again, and tests here are passing on it. |
Cool, any reason not to merge? |
Not as far as I'm concerned, just figured having another set of eyes on it before we bump a dependency version would be worthwhile. The changes in this most recent tag of libosxunwind are incredibly minimal though. |
This is causing build problems on macOS, specifically:
|
What version of MacOS and what version of Xcode do you have installed? |
10.14.1 and I have updated all the things. |
Okay the problem here is that the Julia build system is shoe-horning
Note the cavalcade of problems here: two (incompatible) standard libraries being requested, an incorrect The reason that CI didn't catch this is that Julia only enforces this on OSX 10.13+. The reason that Alex and I didn't catch this is that we built I think the proper way to fix this is to patch |
PR to fix this in libosxunwind is here: JuliaLang/libosxunwind#14 |
I ran into this problem while building Julia 0.7 on a new Mac as @staticfloat pointed out. Couldn't figure out how to solve it (because I had no problem building 0.7 on my previous Mac). After reading this thread I tried building master and it succeeded. Is it possible to backport this fix to 0.7? I still prefer using 0.7 to get deprecation warnings. |
As of now, there are no new 0.7 releases planed. |
You should be able to use the official 0.7 binaries for Mac available at https://julialang.org/downloads. |
Fixes #29912.