2023-11-01 06:11:15 +08:00
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
#[=======================================================================[.rst:
T e s t B i g E n d i a n
- - - - - - - - - - - - -
D e f i n e m a c r o t o d e t e r m i n e e n d i a n t y p e
C h e c k i f t h e s y s t e m i s b i g e n d i a n o r l i t t l e e n d i a n
: :
TEST_BIG_ENDIAN ( VARIABLE )
V A R I A B L E - v a r i a b l e t o s t o r e t h e r e s u l t t o
#]=======================================================================]
include ( CheckTypeSize )
macro ( TEST_BIG_ENDIAN VARIABLE )
if ( NOT DEFINED HAVE_ ${ VARIABLE } )
2023-11-01 06:34:31 +08:00
message ( CHECK_START "Check if the system is big endian" )
message ( CHECK_START "Searching 16 bit integer" )
2023-11-01 06:11:15 +08:00
if ( CMAKE_C_COMPILER_LOADED )
set ( _test_language "C" )
elseif ( CMAKE_CXX_COMPILER_LOADED )
set ( _test_language "CXX" )
else ( )
message ( FATAL_ERROR "TEST_BIG_ENDIAN needs either C or CXX language enabled" )
endif ( )
CHECK_TYPE_SIZE ( "unsigned short" CMAKE_SIZEOF_UNSIGNED_SHORT LANGUAGE ${ _test_language } )
if ( CMAKE_SIZEOF_UNSIGNED_SHORT EQUAL 2 )
2023-11-01 06:34:31 +08:00
message ( CHECK_PASS "Using unsigned short" )
2023-11-01 06:11:15 +08:00
set ( CMAKE_16BIT_TYPE "unsigned short" )
else ( )
CHECK_TYPE_SIZE ( "unsigned int" CMAKE_SIZEOF_UNSIGNED_INT LANGUAGE ${ _test_language } )
if ( CMAKE_SIZEOF_UNSIGNED_INT )
2023-11-01 06:34:31 +08:00
message ( CHECK_PASS "Using unsigned int" )
2023-11-01 06:11:15 +08:00
set ( CMAKE_16BIT_TYPE "unsigned int" )
else ( )
CHECK_TYPE_SIZE ( "unsigned long" CMAKE_SIZEOF_UNSIGNED_LONG LANGUAGE ${ _test_language } )
if ( CMAKE_SIZEOF_UNSIGNED_LONG )
2023-11-01 06:34:31 +08:00
message ( CHECK_PASS "Using unsigned long" )
2023-11-01 06:11:15 +08:00
set ( CMAKE_16BIT_TYPE "unsigned long" )
else ( )
message ( FATAL_ERROR "no suitable type found" )
endif ( )
endif ( )
endif ( )
if ( _test_language STREQUAL "CXX" )
set ( _test_file "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/TestEndianess.cpp" )
else ( )
set ( _test_file "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/TestEndianess.c" )
endif ( )
configure_file ( "${CMAKE_ROOT}/Modules/TestEndianess.c.in"
$ { _ t e s t _ f i l e }
@ O N L Y )
file ( READ ${ _test_file } TEST_ENDIANESS_FILE_CONTENT )
try_compile ( HAVE_ ${ VARIABLE }
" $ { C M A K E _ B I N A R Y _ D I R } "
$ { _ t e s t _ f i l e }
O U T P U T _ V A R I A B L E O U T P U T
C O P Y _ F I L E " $ { C M A K E _ B I N A R Y _ D I R } $ { C M A K E _ F I L E S _ D I R E C T O R Y } / T e s t E n d i a n e s s . b i n " )
if ( HAVE_ ${ VARIABLE } )
file ( STRINGS "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/TestEndianess.bin"
C M A K E _ T E S T _ E N D I A N E S S _ S T R I N G S _ L E L I M I T _ C O U N T 1 R E G E X " T H I S I S L I T T L E E N D I A N " )
file ( STRINGS "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/TestEndianess.bin"
C M A K E _ T E S T _ E N D I A N E S S _ S T R I N G S _ B E L I M I T _ C O U N T 1 R E G E X " T H I S I S B I G E N D I A N " )
# on mac, if there are universal binaries built both will be true
# return the result depending on the machine on which cmake runs
if ( CMAKE_TEST_ENDIANESS_STRINGS_BE AND CMAKE_TEST_ENDIANESS_STRINGS_LE )
if ( CMAKE_SYSTEM_PROCESSOR MATCHES powerpc )
set ( CMAKE_TEST_ENDIANESS_STRINGS_BE TRUE )
set ( CMAKE_TEST_ENDIANESS_STRINGS_LE FALSE )
else ( )
set ( CMAKE_TEST_ENDIANESS_STRINGS_BE FALSE )
set ( CMAKE_TEST_ENDIANESS_STRINGS_LE TRUE )
endif ( )
message ( STATUS "TEST_BIG_ENDIAN found different results, consider setting CMAKE_OSX_ARCHITECTURES or CMAKE_TRY_COMPILE_OSX_ARCHITECTURES to one or no architecture !" )
endif ( )
if ( CMAKE_TEST_ENDIANESS_STRINGS_LE )
set ( ${ VARIABLE } 0 CACHE INTERNAL "Result of TEST_BIG_ENDIAN" FORCE )
2023-11-01 06:34:31 +08:00
message ( CHECK_PASS "little endian" )
2023-11-01 06:11:15 +08:00
endif ( )
if ( CMAKE_TEST_ENDIANESS_STRINGS_BE )
set ( ${ VARIABLE } 1 CACHE INTERNAL "Result of TEST_BIG_ENDIAN" FORCE )
2023-11-01 06:34:31 +08:00
message ( CHECK_PASS "big endian" )
2023-11-01 06:11:15 +08:00
endif ( )
if ( NOT CMAKE_TEST_ENDIANESS_STRINGS_BE AND NOT CMAKE_TEST_ENDIANESS_STRINGS_LE )
2023-11-01 06:34:31 +08:00
message ( CHECK_FAIL "TEST_BIG_ENDIAN found no result!" )
2023-11-01 06:11:15 +08:00
message ( SEND_ERROR "TEST_BIG_ENDIAN found no result!" )
endif ( )
file ( APPEND ${ CMAKE_BINARY_DIR } ${ CMAKE_FILES_DIRECTORY } /CMakeOutput.log
" D e t e r m i n i n g i f t h e s y s t e m i s b i g e n d i a n p a s s e d w i t h t h e f o l l o w i n g o u t p u t : \ n $ { O U T P U T } \ n T e s t E n d i a n e s s . c : \ n $ { T E S T _ E N D I A N E S S _ F I L E _ C O N T E N T } \ n \ n " )
else ( )
2023-11-01 06:34:31 +08:00
message ( CHECK_FAIL "failed" )
2023-11-01 06:11:15 +08:00
file ( APPEND ${ CMAKE_BINARY_DIR } ${ CMAKE_FILES_DIRECTORY } /CMakeError.log
" D e t e r m i n i n g i f t h e s y s t e m i s b i g e n d i a n f a i l e d w i t h t h e f o l l o w i n g o u t p u t : \ n $ { O U T P U T } \ n T e s t E n d i a n e s s . c : \ n $ { T E S T _ E N D I A N E S S _ F I L E _ C O N T E N T } \ n \ n " )
set ( ${ VARIABLE } )
endif ( )
endif ( )
endmacro ( )