mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-06 14:43:20 +00:00
fix ARM64 linkage with Visual Studio >= 17.14 when SDL_LIBC is disabled
Reference issue: https://github.com/libsdl-org/SDL/issues/13254
This commit is contained in:
parent
cd0cf8b855
commit
2fb6abb9ad
1 changed files with 5 additions and 0 deletions
|
|
@ -755,6 +755,11 @@ if(MSVC)
|
|||
if(MSVC_VERSION GREATER 1926 AND CMAKE_GENERATOR_PLATFORM MATCHES "Win32|x64")
|
||||
list(APPEND EXTRA_LDFLAGS_BUILD "-CETCOMPAT")
|
||||
endif()
|
||||
|
||||
# for VS >= 17.14 targeting ARM64: inline the Interlocked funcs
|
||||
if(MSVC_VERSION GREATER 1943 AND SDL_CPU_ARM64 AND NOT SDL_LIBC)
|
||||
list(APPEND EXTRA_CFLAGS /forceInterlockedFunctions-)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(CMAKE_C_COMPILER_ID STREQUAL "MSVC")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue