commit b286d92af7468164c155c70d38213211b296fdfe Author: Douglas Katzman Date: Wed Jan 10 11:46:55 2024 -0500 Fix riscv build diff --git a/src/compiler/riscv/float.lisp b/src/compiler/riscv/float.lisp index ce46d24ac..a16380293 100644 --- a/src/compiler/riscv/float.lisp +++ b/src/compiler/riscv/float.lisp @@ -578,7 +578,7 @@ (:results (res :scs (double-reg))) (:arg-types signed-num) (:result-types double-float) - (:translate make-double-float) + (:translate %make-double-float) (:policy :fast-safe) (:generator 2 (inst fmvx-> :double res bits))) nput type='hidden' name='id' value='8f36612d5b94616a7fbc3ae65b5cf331b2853e2c'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/system/uuid.scm
AgeCommit message (Expand)Author
2024-09-01uuid: Add support for exFAT....We expect users to use the generic STRING->FAT-UUID procedure. This is consistent with how we already treat FAT32 vs FAT16. It is not consistent with how we export 8 different aliases for STRING->DCE-UUID, but I'm unconvinced that would be better. * gnu/system/uuid.scm (%uuid-parsers, %uuid-printers): Add the ‘exfat’ file system type. Change-Id: Ia31482716e4395f9f10f794f49fb31c9f330a2e3 Tobias Geerinckx-Rice
2023-06-18uuid: Fix NTFS UUID stringification....Previously, (ntfs-uuid->string (string->ntfs-uuid"5234ED0D34ECF53F")) would yield "5234EDD34ECF53F". Reported by sughosha in #guix. * gnu/system/uuid.scm (ntfs-uuid->string): Pad hex bytes with zero when needed. Tobias Geerinckx-Rice
2021-09-23uuid: Support XFS....* gnu/system/uuid.scm (string->xfs-uuid): New procedure. (%uuid-parsers, %uuid-printers): Add ‘xfs’ file system type. Tobias Geerinckx-Rice