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 et'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/gexp.scm
AgeCommit message (Expand)Author
2024-04-08gexp: Add #:guile parameter to ‘gexp->file’ and ‘scheme-file’....Ludovic Courtès
2023-12-22gexp: #:references-graphs accepts and honors <gexp-input> records....Ludovic Courtès
2023-12-22gexp: Add compiler for <gexp-input>....Ludovic Courtès
2023-11-25tests: Import (guix build syscalls) when (guix build store-copy) is used....Ludovic Courtès
2022-11-11grafts: Run with a UTF-8 locale....Ludovic Courtès
2022-10-22Remove now unnecessary uses of (guix grafts)....Ludovic Courtès