This is modeled after the ia64 support. Aarch64 can be either big endian or little endian, so we add the case for both. --- native/fdlibm/ieeefp.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/native/fdlibm/ieeefp.h b/native/fdlibm/ieeefp.h index 1a9740f..73455c0 100644 --- a/native/fdlibm/ieeefp.h +++ b/native/fdlibm/ieeefp.h @@ -27,6 +27,14 @@ #endif #endif +#ifdef __aarch64__ +#ifdef __BIG_ENDIAN__ +#define __IEEE_BIG_ENDIAN +#else +#define __IEEE_LITTLE_ENDIAN +#endif +#endif + #ifdef __hppa__ #define __IEEE_BIG_ENDIAN #endif -- 2.16.3 Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Expand)Author
2022-07-03etc: Add teams.scm....Ricardo Wurmus
2022-01-25build: Require Guile >= 3.0.3....Ludovic Courtès
2021-11-23maint: "make dist" builds tarballs in 'ustar' format....Ludovic Courtès
2021-06-01maint: Require Guile 3.0....Ludovic Courtès
2021-05-03nls: Do not update po files on first make invocation....Julien Lepiller
2021-04-25import: Remove Nix importer....Ludovic Courtès
2021-04-23build: Add a check for Guile-Lib....Maxim Cournoyer
2021-03-17maint: Check whether Guile-zlib is recent enough....Ludovic Courtès
2021-02-04build: Add '--with-channel-commit' and related configure flags....Ludovic Courtès