Merge pull request #9374 from liamwhite/externals

externals: update dynarmic, SDL2
This commit is contained in:
liamwhite
2022-12-04 10:44:12 -05:00
committed by GitHub
9 changed files with 35 additions and 29 deletions

View File

@ -284,9 +284,15 @@ if (MSVC)
/we4244 # 'conversion': conversion from 'type1' to 'type2', possible loss of data
)
else()
target_compile_options(video_core PRIVATE
-Werror=conversion
if (APPLE)
# error: declaration shadows a typedef in 'interval_base_set<SubType, DomainT, Compare, Interval, Alloc>'
# error: implicit conversion loses integer precision: 'int' to 'boost::icl::bound_type' (aka 'unsigned char')
target_compile_options(video_core PRIVATE -Wno-shadow -Wno-unused-local-typedef)
else()
target_compile_options(video_core PRIVATE -Werror=conversion)
endif()
target_compile_options(video_core PRIVATE
-Wno-sign-conversion
)