CheckFileOffsetBits.cmake 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # - Check if _FILE_OFFSET_BITS macro needed for large files
  2. # CHECK_FILE_OFFSET_BITS ()
  3. #
  4. # The following variables may be set before calling this macro to
  5. # modify the way the check is run:
  6. #
  7. # CMAKE_REQUIRED_FLAGS = string of compile command line flags
  8. # CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar)
  9. # CMAKE_REQUIRED_INCLUDES = list of include directories
  10. # Copyright (c) 2009, Michihiro NAKAJIMA
  11. #
  12. # Redistribution and use is allowed according to the terms of the BSD license.
  13. # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
  14. #INCLUDE(CheckCXXSourceCompiles)
  15. GET_FILENAME_COMPONENT(_selfdir_CheckFileOffsetBits
  16. "${CMAKE_CURRENT_LIST_FILE}" PATH)
  17. MACRO (CHECK_FILE_OFFSET_BITS)
  18. IF(NOT DEFINED _FILE_OFFSET_BITS)
  19. MESSAGE(STATUS "Checking _FILE_OFFSET_BITS for large files")
  20. TRY_COMPILE(__WITHOUT_FILE_OFFSET_BITS_64
  21. ${CMAKE_CURRENT_BINARY_DIR}
  22. ${_selfdir_CheckFileOffsetBits}/CheckFileOffsetBits.c
  23. COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS})
  24. IF(NOT __WITHOUT_FILE_OFFSET_BITS_64)
  25. TRY_COMPILE(__WITH_FILE_OFFSET_BITS_64
  26. ${CMAKE_CURRENT_BINARY_DIR}
  27. ${_selfdir_CheckFileOffsetBits}/CheckFileOffsetBits.c
  28. COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS} -D_FILE_OFFSET_BITS=64)
  29. ENDIF(NOT __WITHOUT_FILE_OFFSET_BITS_64)
  30. IF(NOT __WITHOUT_FILE_OFFSET_BITS_64 AND __WITH_FILE_OFFSET_BITS_64)
  31. SET(_FILE_OFFSET_BITS 64 CACHE INTERNAL "_FILE_OFFSET_BITS macro needed for large files")
  32. MESSAGE(STATUS "Checking _FILE_OFFSET_BITS for large files - needed")
  33. ELSE(NOT __WITHOUT_FILE_OFFSET_BITS_64 AND __WITH_FILE_OFFSET_BITS_64)
  34. SET(_FILE_OFFSET_BITS "" CACHE INTERNAL "_FILE_OFFSET_BITS macro needed for large files")
  35. MESSAGE(STATUS "Checking _FILE_OFFSET_BITS for large files - not needed")
  36. ENDIF(NOT __WITHOUT_FILE_OFFSET_BITS_64 AND __WITH_FILE_OFFSET_BITS_64)
  37. ENDIF(NOT DEFINED _FILE_OFFSET_BITS)
  38. ENDMACRO (CHECK_FILE_OFFSET_BITS)