guix-commits
[Top][All Lists]
Advanced

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

06/06: gnu: llvm: Build without debugging symbols.


From: Eric Bavier
Subject: 06/06: gnu: llvm: Build without debugging symbols.
Date: Tue, 19 Jul 2016 01:33:42 +0000 (UTC)

bavier pushed a commit to branch master
in repository guix.

commit 0935fb271b69d14d56829595ad39c8b9979c7cf9
Author: Eric Bavier <address@hidden>
Date:   Mon Jul 18 20:27:24 2016 -0500

    gnu: llvm: Build without debugging symbols.
    
    * gnu/packages/llvm.scm (llvm)[arguments]: Add #:build-type.
---
 gnu/packages/llvm.scm |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm
index beb09fa..c380eba 100644
--- a/gnu/packages/llvm.scm
+++ b/gnu/packages/llvm.scm
@@ -57,7 +57,10 @@
     (arguments
      `(#:configure-flags '("-DCMAKE_SKIP_BUILD_RPATH=FALSE"
                            "-DCMAKE_BUILD_WITH_INSTALL_RPATH=FALSE"
-                           "-DLLVM_ENABLE_FFI:BOOL=TRUE")))
+                           "-DLLVM_ENABLE_FFI:BOOL=TRUE")
+
+       ;; Don't use '-g' during the build, to save space.
+       #:build-type "Release"))
     (home-page "http://www.llvm.org";)
     (synopsis "Optimizing compiler infrastructure")
     (description



reply via email to

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