1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-11 18:20:26 +09:00

Define _TIME_BITS=64 globally (#100461)

Contributes to #96460
This commit is contained in:
Adeel Mujahid 2024-03-30 20:40:47 +02:00 committed by GitHub
parent b7d91f2308
commit cc7bf831f0
Signed by: github
GPG key ID: B5690EEEBB952194

View file

@ -443,6 +443,8 @@ endif(CLR_CMAKE_HOST_WIN32)
# Unconditionally define _FILE_OFFSET_BITS as 64 on all platforms.
add_definitions(-D_FILE_OFFSET_BITS=64)
# Unconditionally define _TIME_BITS as 64 on all platforms.
add_definitions(-D_TIME_BITS=64)
# Architecture specific files folder name
if (CLR_CMAKE_TARGET_ARCH_AMD64)