cmake: mingw also needs _FILE_OFFSET_BITS=64

This commit is contained in:
Weiyi Wang 2018-10-16 13:23:07 -04:00
parent 25a370ef19
commit 380b83e9bd
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ endif()
# On modern Unixes, this is typically already the case. The lone exception is
# glibc, which may default to 32 bits. glibc allows this to be configured
# by setting _FILE_OFFSET_BITS.
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
if(CMAKE_SYSTEM_NAME STREQUAL "Linux" OR MINGW)
add_definitions(-D_FILE_OFFSET_BITS=64)
endif()