-
Notifications
You must be signed in to change notification settings - Fork 108
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
OS X Support #33
Comments
until Apple adds support for thread_local it will not work - sorry |
@olk Apple added support for thread_local since last Xcode. I can provide more informations if needed. |
@Rydgel yes, but report in boost.context please |
This is actually this bug boostorg/context#38 |
@Rydgel could you verify that the code is working, please - I don't own a Mac, so I can't test it |
@olk just recompiled Boost with the patch from that context issue. Everything is working now! |
@Rydgel ty |
I'm trying to get boost fiber to work on OS 10.10.4. The first issue I had was the OS X version of Clang doesn't support thread_local for some reason. I was considering switching fiber over to boost thread local storage instead of using thread_local, but I figured I would just try just using GCC-5.1.0 and link with stdlibc++ instead.
Building boost modular and boost fiber was successful, and building the fiber example "simple.cpp" was also successful, but it fails with segmentation faults. Any idea what's going on?
Maybe I'll hack it to use boost thread local storage so the standard clang will work instead..
The text was updated successfully, but these errors were encountered: