diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2025-03-20 16:08:30 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:18 +0200 |
| commit | 1e73912d3468bf96148d5828a1f6b466203b5a2a (patch) | |
| tree | 0f3f6e121fa6df0a16be81fe5f2314db59e9d33b | |
| parent | 81baead2c412c6e483efddc0c03815669285f5e2 (diff) | |
gnu: make-llvm: Remove dynamic linker cache phase also with version 15.0.
On i686-linux the 'make-dynamic-linker-cache fails also when building llvm@15.
* gnu/packages/llvm.scm (make-llvm)[arguments]: Remove
'make-dynamic-linker-cache phase on i686-linux also when version is 15.0.
Change-Id: Iedbe8ce684aae5d8dc07e3c11e696e1b425b9652
| -rw-r--r-- | gnu/packages/llvm.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index c0b2eec3ca..a0f47447be 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -663,7 +663,7 @@ output), and Binutils.") (rename-file (string-append #$output "/share/opt-viewer") opt-viewer-share)))) ;; The build daemon goes OOM on i686-linux on this phase. - #$@(if (and (version>=? version "16.0") + #$@(if (and (version>=? version "15.0") (target-x86-32?)) #~((delete 'make-dynamic-linker-cache)) #~())))) |
