BOOST_HAS_PTHREADS not needed
All checks were successful
eden-license / license-header (pull_request) Successful in 29s

Signed-off-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
lizzie 2025-08-30 18:12:48 +00:00 committed by crueter
parent 7115ae15a3
commit 7d7583e7d2

View file

@ -406,10 +406,8 @@ if (YUZU_USE_CPM)
if (NOT MSVC)
# boost sucks
# Specific workaround for a bug of Solaris builds - even through -pthread is defined
# Solaris has some nasty /usr/include hierachy that makes boost config freak out
# Solaris (and probably other NIXes) need explicit pthread definition
if (PLATFORM_SUN)
target_compile_definitions(boost_container INTERFACE BOOST_HAS_PTHREADS)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthreads")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pthreads")
endif()