view mupdf-source/scripts/tesseract/endianness.h @ 38:8934ac156ef5

Allow to build with the PyPI package "clang" instead of "libclang". 1. It seems to be maintained. 2. In the FreeBSD base system there is no pre-built libclang.so. If you need this library you have to install llvm from ports additionally. 2. On FreeBSD there is no pre-built wheel "libclang" with a packaged libclang.so.
author Franz Glasner <fzglas.hg@dom66.de>
date Tue, 23 Sep 2025 10:27:15 +0200
parents b50eed0cc0ef
children
line wrap: on
line source

#if defined(__BYTE_ORDER) && __BYTE_ORDER == __BIG_ENDIAN ||	\
	defined(__BIG_ENDIAN__) ||				\
	defined(__ARMEB__) ||					\
	defined(__THUMBEB__) ||					\
	defined(__AARCH64EB__) ||				\
	defined(_MIBSEB) || defined(__MIBSEB) || defined(__MIBSEB__)
// It's a big-endian target architecture
#	define L_BIG_ENDIAN
#elif defined(__BYTE_ORDER) && __BYTE_ORDER == __LITTLE_ENDIAN ||	\
	defined(__LITTLE_ENDIAN__) ||					\
	defined(__ARMEL__) ||						\
	defined(__THUMBEL__) ||						\
	defined(__AARCH64EL__) ||					\
	defined(_MIPSEL) || defined(__MIPSEL) || defined(__MIPSEL__) ||	\
	defined(_M_IX86) || defined(_M_X64) ||				\
	defined(_M_IS64) || defined(_M_ARM)
// It's a little-endian target architecture
#   define L_LITTLE_ENDIAN
#else
#error "I don't know what architecture this is!"
#endif