Skip to content

Commit

Permalink
Support for MSYS (without mingw)
Browse files Browse the repository at this point in the history
  • Loading branch information
edubart committed Sep 2, 2021
1 parent 5e51eab commit 5a0cacb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion minicoro.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Minimal asymmetric stackful cross-platform coroutine library in pure C.
minicoro - v0.1.2 - 13/Feb/2021
minicoro - v0.1.2 - 02/Sep/2021
Eduardo Bart - edub4rt@gmail.com
https://github.com/edubart/minicoro
Expand Down Expand Up @@ -328,6 +328,8 @@ extern "C" {
#else
#define MCO_USE_FIBERS
#endif
#elif defined(__CYGWIN__) /* MSYS */
#define MCO_USE_UCONTEXT
#elif defined(__EMSCRIPTEN__)
#define MCO_USE_FIBERS
#else
Expand Down

0 comments on commit 5a0cacb

Please sign in to comment.