externals: update dynarmic, SDL2

This commit is contained in:
Liam
2022-12-03 13:32:24 -05:00
parent 75e16547f8
commit 6d2c597371
9 changed files with 35 additions and 29 deletions

View File

@ -280,9 +280,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
)