Skip to content

Commit

Permalink
Try enabling async stack support for MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
ispeters committed Sep 1, 2024
1 parent 009bf11 commit 0cfaffd
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions include/unifex/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -301,11 +301,9 @@
#if !defined(UNIFEX_NO_ASYNC_STACKS)
// default:
// - release builds do not have async stacks
// - Windows builds do not have async stacks
//
// adding async stacks adds non-trivial binary size at the moment, and I can't
// figure out how to make all the relevant Windows builds succeed
# if defined(NDEBUG) || defined(_MSC_VER)
// adding async stacks adds non-trivial binary size at the moment
# if defined(NDEBUG)
# define UNIFEX_NO_ASYNC_STACKS 1
# else
# define UNIFEX_NO_ASYNC_STACKS 0
Expand Down

0 comments on commit 0cfaffd

Please sign in to comment.