mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: python-graph-tool: Limit build to 1 core.
* gnu/packages/graph.scm (python-graph-tool)[arguments]: Set parallel-build to #false. Change-Id: Id181554cda028c6e9985f029a3ef98d14efb0c27
This commit is contained in:
parent
e75335fc91
commit
0da09b370c
1 changed files with 3 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
;;; Copyright © 2017-2024 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua@nextjournal.com>
|
||||
;;; Copyright © 2018, 2020, 2022 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2019, 2021, 2022 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2019, 2021, 2022, 2024 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2019 Andreas Enge <andreas@enge.fr>
|
||||
;;; Copyright © 2020 Alexander Krotov <krotov@iitp.ru>
|
||||
;;; Copyright © 2020 Pierre Langlois <pierre.langlos@gmx.com>
|
||||
|
@ -833,6 +833,8 @@ (define-public python-graph-tool
|
|||
(guix build python-build-system))
|
||||
#:modules (,@%gnu-build-system-modules
|
||||
((guix build python-build-system) #:select (site-packages)))
|
||||
;; The build process peaks around 4GB/RAM per core.
|
||||
#:parallel-build? #f
|
||||
#:configure-flags
|
||||
(list (string-append "--with-boost="
|
||||
(assoc-ref %build-inputs "boost"))
|
||||
|
|
Loading…
Reference in a new issue