mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: icedove: Build with LLVM and clang.
This improves the performance quite a bit. * gnu/packages/gnuzilla.scm (icedove)[arguments]: setenv's for LLVM and clang. [native-inputs]: Switch to version 11 of `clang` and `llvm` like Icecat does.
This commit is contained in:
parent
661bf2f518
commit
811b9b050e
1 changed files with 8 additions and 3 deletions
|
@ -1472,7 +1472,12 @@ (define-public icedove
|
|||
(string-append (getcwd) "/mach_state"))
|
||||
(setenv "MOZCONFIG"
|
||||
(string-append (getcwd) "/.mozconfig"))
|
||||
(setenv "CC" "gcc")
|
||||
|
||||
(setenv "AR" "llvm-ar")
|
||||
(setenv "NM" "llvm-nm")
|
||||
(setenv "CC" "clang")
|
||||
(setenv "CXX" "clang++")
|
||||
|
||||
(setenv "MOZ_NOSPAM" "1")
|
||||
(setenv "MACH_USE_SYSTEM_PYTHON" "1")
|
||||
(setenv "PYTHON"
|
||||
|
@ -1623,8 +1628,8 @@ (define-public icedove
|
|||
(base32
|
||||
"0aj8a8qbm71n34yi58y04bn4h9zz2rciz0cm3hh58rsmcqs1s9ym")))))
|
||||
("cargo" ,rust "cargo")
|
||||
("clang" ,clang)
|
||||
("llvm" ,llvm)
|
||||
("clang" ,clang-11)
|
||||
("llvm" ,llvm-11)
|
||||
("m4" ,m4)
|
||||
("nasm" ,nasm)
|
||||
("node" ,node)
|
||||
|
|
Loading…
Reference in a new issue