guix-commits
[Top][All Lists]
Advanced

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

03/03: gnu: llvm-14: Fix configure-flags for cross-compiling.


From: guix-commits
Subject: 03/03: gnu: llvm-14: Fix configure-flags for cross-compiling.
Date: Sun, 12 Jun 2022 06:53:10 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit e22b55f0b9ef468d9c03460a00434a3e94645d1f
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Jun 12 11:50:14 2022 +0300

    gnu: llvm-14: Fix configure-flags for cross-compiling.
    
    * gnu/packages/llvm.scm (llvm-14)[arguments]: Fix syntax error in
    configure-flags when cross-compiling llvm.
---
 gnu/packages/llvm.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm
index 88b582d85b..8bc9e8904c 100644
--- a/gnu/packages/llvm.scm
+++ b/gnu/packages/llvm.scm
@@ -577,9 +577,9 @@ output), and Binutils.")
          ;; These options are required for cross-compiling LLVM according
          ;; to <https://llvm.org/docs/HowToCrossCompileLLVM.html>.
          #$@(if (%current-target-system)
-                #~(,(string-append "-DLLVM_TABLEGEN="
-                                   #+(file-append this-package
-                                                  "/bin/llvm-tblgen"))
+                #~((string-append "-DLLVM_TABLEGEN="
+                                  #+(file-append this-package
+                                                 "/bin/llvm-tblgen"))
                    #$(string-append "-DLLVM_DEFAULT_TARGET_TRIPLE="
                                     (%current-target-system))
                    #$(string-append "-DLLVM_TARGET_ARCH="



reply via email to

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