-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Remove libcoro dependency #11433
base: main
Are you sure you want to change the base?
Remove libcoro dependency #11433
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -199,21 +199,6 @@ else() | |
target_include_directories(toml11_target SYSTEM INTERFACE ${CMAKE_CURRENT_BINARY_DIR}/toml11/include) | ||
endif() | ||
|
||
################################################################################ | ||
# Coroutine implementation | ||
################################################################################ | ||
|
||
set(DEFAULT_COROUTINE_IMPL boost) | ||
if(WIN32) | ||
# boost coroutine not available in windows build environment for now. | ||
set(DEFAULT_COROUTINE_IMPL libcoro) | ||
elseif(NOT APPLE AND NOT USE_ASAN AND CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "^x86") | ||
# revert to libcoro for x86 linux while we investigate a performance regression | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Has this changed? Is there still a performance regression? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. good point. not sure what benchmark can show the regression? @xis19 , before merging, let's find the benchmark and compare performance first. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would circus work? Or it is already retired? |
||
set(DEFAULT_COROUTINE_IMPL libcoro) | ||
endif() | ||
|
||
set(COROUTINE_IMPL ${DEFAULT_COROUTINE_IMPL} CACHE STRING "Which coroutine implementation to use. Options are boost and libcoro") | ||
|
||
################################################################################ | ||
# AWS SDK | ||
################################################################################ | ||
|
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does boost support coroutine on windows now?