[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#63766] [PATCH 0/4] Image for HiFive Unmatched
From: |
Ludovic Courtès |
Subject: |
[bug#63766] [PATCH 0/4] Image for HiFive Unmatched |
Date: |
Fri, 09 Jun 2023 22:49:30 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) |
Efraim Flashner <efraim@flashner.co.il> skribis:
> * gnu/packages/base.scm (glibc-2.33)[source]: Add patch.
> * gnu/packages/patches/glibc-2.33-rawmemchr-miscompilation.patch: New
> file.
> * gnu/local.mk (dist_patch_DATA): Register it.
[...]
> + (cons* (search-patch
> "glibc-2.33-rawmemchr-miscompilation.patch")
> + ;; Remove a patch that's become irrelevant and that does not
> + ;; apply to this version.
> + (remove (lambda (patch)
> + (string=? (basename patch)
> +
> "glibc-hurd-clock_gettime_monotonic.patch"))
> + (origin-patches (package-source glibc)))))))
The indentation is off. You can use ‘cons’ rather than ‘cons*’.
> +++ b/gnu/packages/patches/glibc-2.33-rawmemchr-miscompilation.patch
> @@ -0,0 +1,57 @@
> +This patch is from upstream glibc after 2.33 and is needed in Guix to
> +fix glibc-2.33 compilation for riscv64-linux.
Maybe rename it ‘glibc-2.33-riscv-compilation.patch’ to make the goal
clearer?
Thanks,
Ludo’.