diff options
| author | David Elsing <david.elsing@posteo.net> | 2026-02-03 21:33:21 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-02-10 23:46:31 +0100 |
| commit | 913ff87b70356378bd8f2d7be0bfc25fbdd671b8 (patch) | |
| tree | 28c71298e91f15459c7a9df8cead68522e6f9083 /gnu/packages/llvm.scm | |
| parent | 7d09e6f8815b6b4c1b2157ef9024026e85c65131 (diff) | |
gnu: make-llvm-rocm: Do not use --disable-new-dtags by default.
* gnu/packages/patches/clang-rocm-default-new-dtags.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/llvm.scm (make-llvm-rocm)[source]: Add the patch.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/llvm.scm')
| -rw-r--r-- | gnu/packages/llvm.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index 3e87e5df748..3f08d073bb2 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -1403,7 +1403,9 @@ Library.") ;; is necessary. (patches (map search-patch - (assoc-ref %llvm-patches (package-version llvm-base)))))) + (cons + "clang-rocm-default-new-dtags.patch" + (assoc-ref %llvm-patches (package-version llvm-base))))))) (arguments (substitute-keyword-arguments (package-arguments llvm-base) ((#:configure-flags flags) |
