-
Notifications
You must be signed in to change notification settings - Fork 175
Open
Description
context/include/boost/context/detail/config.hpp
Lines 33 to 35 in fb0f3ea
| #if ! defined(BOOST_USE_UCONTEXT) && defined(__CYGWIN__) | |
| # define BOOST_USE_UCONTEXT | |
| #endif |
defines BOOST_USE_UCONTEXT on Cygwin. This causes Fiber to fail to build, because it tries to use ucontext, but Context is built with fcontext.
If Context is built with ucontext instead, Fiber builds, but then Coroutine fails, because it needs fcontext:
Should config.hpp be defining BOOST_USE_UCONTEXT on Cygwin?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels