gnu: llvm: Build without debugging symbols.

* gnu/packages/llvm.scm (llvm)[arguments]: Add #:build-type.
master
Eric Bavier 2016-07-18 20:27:24 -05:00
parent 3b956a3392
commit 0935fb271b
No known key found for this signature in database
GPG Key ID: 1EBBD204781F962C
1 changed files with 4 additions and 1 deletions

View File

@ -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