mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: llvm: Build without debugging symbols.
* gnu/packages/llvm.scm (llvm)[arguments]: Add #:build-type.
This commit is contained in:
parent
3b956a3392
commit
0935fb271b
1 changed files with 4 additions and 1 deletions
|
@ -57,7 +57,10 @@ (define-public llvm
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue