summaryrefslogtreecommitdiff
path: root/Modules/TestBigEndian.cmake
blob: 53cd8cbe7fd71cea1ed3faaf4fff79fe30f19244 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# Check if the system is big endian or little endian
#
# VARIABLE - variable to store the result to
#

MACRO(TEST_BIG_ENDIAN VARIABLE)
  TRY_RUN(${VARIABLE} HAVE_${VARIABLE}
    ${CMAKE_BINARY_DIR}
    ${CMAKE_ROOT}/Modules/TestBigEndian.c
    OUTPUT_VARIABLE OUTPUT)
  IF(NOT HAVE_${VARIABLE})
    FILE(APPEND ${CMAKE_BINARY_DIR}/CMakeError.log 
      "Determining the endianes of the system failed with the following output:\n${OUTPUT}\n")
  ENDIF(NOT HAVE_${VARIABLE})
ENDMACRO(TEST_BIG_ENDIAN)