unit/auto
Andrew Clayton ead3580db2 Autodetect endianness.
In configure we set NXT_HAVE_LITTLE_ENDIAN for i386, amd64 and x86_64.
However that misses at least AArch64 (arm64) where it's usually run in
little endian mode.

However none of that really matters as NXT_HAVE_LITTLE_ENDIAN isn't used
anywhere.  So why this patch?

The only place we need to explicitly know about endianness is the
nxt_websocket_header_t structure where we lay it out differently
depending on endianness.

This is currently done using BYTE_ORDER, LITTLE_ENDIAN and BIG_ENDIAN
macros.

However on at least illumos (OpenSolaris / OpenIndiana) those macros are
not defined and we get compiler errors due to duplicate structure
members.

So let's use our own NXT_HAVE_{BIG,LITTLE}_ENDIAN macros.  However it
would be better to detect endianness programmatically as some
architectures can run in either mode, e.g Linux used to run in big
endian on PowerPC but has since switched to little endian (to match
x86).

This commit adds an auto/endian script (using a slightly modified
version of the test program from nginx's auto script), that checks for
the endianness of the platform being built on.  E.g

  checking for endianness ... little endian

The next commit will switch the nxt_websocket_header_t structure over to
these new macros.

Link: <https://github.com/nginx/unit/pull/298>
Link: <https://developer.ibm.com/articles/l-power-little-endian-faq-trs/>
Tested-by: Alejandro Colomar <alx@nginx.com>
Reviewed-by: Alejandro Colomar <alx@nginx.com>
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
2023-01-12 17:56:00 +00:00
..
cc Using compiler capability to generate dependencies. 2017-12-01 16:28:06 +03:00
echo Fixed displaying "echo" program building failure. 2017-09-22 20:13:55 +03:00
modules Java: upgrading third-party components. 2022-12-14 01:43:24 +00:00
os Printing version in "./configure" output. 2021-12-03 03:11:06 +03:00
atomic Fixed main() prototypes in auto tests. 2022-10-28 03:17:31 +01:00
capability Fixed main() prototypes in auto tests. 2022-10-28 03:17:31 +01:00
cgroup Isolation: wired up cgroup to build system. 2022-12-10 14:00:20 +00:00
clang Fixed main() prototypes in auto tests. 2022-10-28 03:17:31 +01:00
endian Autodetect endianness. 2023-01-12 17:56:00 +00:00
events Fixed main() prototypes in auto tests. 2022-10-28 03:17:31 +01:00
feature PHP: fixed building on MacOSX with --ld-opt= option. 2018-05-30 18:31:26 +03:00
files Fixed main() prototypes in auto tests. 2022-10-28 03:17:31 +01:00
have Initial version. 2017-01-17 20:00:00 +03:00
help Basic njs support. 2022-11-20 23:16:51 +08:00
isolation Fixed main() prototypes in auto tests. 2022-10-28 03:17:31 +01:00
make Avoided modifying existing directories at 'make install'. 2022-10-20 15:50:05 +02:00
malloc Fixed main() prototypes in auto tests. 2022-10-28 03:17:31 +01:00
mmap Fixed main() prototypes in auto tests. 2022-10-28 03:17:31 +01:00
njs Used pkg-config to detect njs where available. 2022-11-29 18:10:38 +04:00
options Basic njs support. 2022-11-20 23:16:51 +08:00
pcre Fixed main() prototypes in auto tests. 2022-10-28 03:17:31 +01:00
save Using disk file to store large request body. 2020-03-12 17:54:29 +03:00
sendfile Fixed main() prototypes in auto tests. 2022-10-28 03:17:31 +01:00
shmem Fixed main() prototypes in auto tests. 2022-10-28 03:17:31 +01:00
sockets Fixed main() prototypes in auto tests. 2022-10-28 03:17:31 +01:00
sources Isolation: wired up cgroup to build system. 2022-12-10 14:00:20 +00:00
ssltls Fixed main() prototypes in auto tests. 2022-10-28 03:17:31 +01:00
summary Isolation: wired up cgroup to build system. 2022-12-10 14:00:20 +00:00
test_build Initial version. 2017-01-17 20:00:00 +03:00
threads Fixed main() prototypes in auto tests. 2022-10-28 03:17:31 +01:00
time Fixed main() prototypes in auto tests. 2022-10-28 03:17:31 +01:00
types Fixed main() prototypes in auto tests. 2022-10-28 03:17:31 +01:00
unix Fixed main() prototypes in auto tests. 2022-10-28 03:17:31 +01:00