andrewrk / libsoundio

C library for cross-platform real-time audio input and output
http://libsound.io/
MIT License
1.92k stars 229 forks source link

Fix endianness detection on Windows ARM platforms #248

Open cgutman opened 3 years ago

cgutman commented 3 years ago

Building libsoundio for ARM64 on Windows fails because there is no handling of Windows ARM platforms in endian.h. This PR simply adds the appropriate handling. With this small patch, libsoundio builds and works perfectly on ARM64.

Note: Even though ARM is bi-endian, Windows on ARM is always little-endian.