gnu: ungoogled-chromium: Increase resource limits in separate phase.
* gnu/packages/chromium.scm (ungoogled-chromium)[arguments]: Add phase 'increase-resource-limits'.master
parent
8da527d5bc
commit
664fa4b162
|
@ -660,8 +660,8 @@ from forcing GEXP-PROMISE."
|
||||||
;; their current status for convenience.
|
;; their current status for convenience.
|
||||||
(format #t "Dumping configure flags...\n")
|
(format #t "Dumping configure flags...\n")
|
||||||
(invoke "gn" "args" "out/Release" "--list"))))
|
(invoke "gn" "args" "out/Release" "--list"))))
|
||||||
(replace 'build
|
(add-before 'build 'increase-resource-limits
|
||||||
(lambda* (#:key (parallel-build? #t) #:allow-other-keys)
|
(lambda _
|
||||||
;; XXX: Chromiums linking step requires a lot of simultaneous file
|
;; XXX: Chromiums linking step requires a lot of simultaneous file
|
||||||
;; accesses. Having a too low ulimit will result in bogus linker
|
;; accesses. Having a too low ulimit will result in bogus linker
|
||||||
;; errors such as "foo.a: error adding symbols: malformed archive".
|
;; errors such as "foo.a: error adding symbols: malformed archive".
|
||||||
|
@ -677,7 +677,9 @@ from forcing GEXP-PROMISE."
|
||||||
(format #t
|
(format #t
|
||||||
"increased maximum number of open files from ~d to ~d~%"
|
"increased maximum number of open files from ~d to ~d~%"
|
||||||
soft (if hard (min hard 4096) 4096)))))
|
soft (if hard (min hard 4096) 4096)))))
|
||||||
|
#t))
|
||||||
|
(replace 'build
|
||||||
|
(lambda* (#:key (parallel-build? #t) #:allow-other-keys)
|
||||||
(invoke "ninja" "-C" "out/Release"
|
(invoke "ninja" "-C" "out/Release"
|
||||||
"-j" (if parallel-build?
|
"-j" (if parallel-build?
|
||||||
(number->string (parallel-job-count))
|
(number->string (parallel-job-count))
|
||||||
|
|
Reference in New Issue