bug-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#54837: LLVM 3.* build failure


From: Maxime Devos
Subject: bug#54837: LLVM 3.* build failure
Date: Sun, 10 Apr 2022 17:50:39 +0200
User-agent: Evolution 3.38.3-1

Guillaume Le Vaillant schreef op zo 10-04-2022 om 14:23 [+0000]:
> It looks like the problem comes from a gexp in the builder. There's
> a gexp inside another gexp, but I don't know if that's the problem:
> 
> --8<---------------cut here---------------start------------->8---
> #:phases (modify-phases #<gexp (modify-phases #<gexp-input #<gexp ...

Suggestion:

Replace

     (substitute-keyword-arguments (package-arguments llvm)
       ((#:phases phases)
        `(modify-phases ,phases
           (delete 'install-opt-viewer)))))))

by

     (substitute-keyword-arguments (package-arguments llvm)
       ((#:phases phases)
        #~(modify-phases #$phases
            (delete 'install-opt-viewer)))))))

in llvm-3.9.1.

Greetings,
Maxime.

Attachment: signature.asc
Description: This is a digitally signed message part


reply via email to

[Prev in Thread] Current Thread [Next in Thread]