mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: commencement: libstdc++-boot0: Support the 64bit Hurd.
* gnu/packages/commencement.scm (make-libstdc++-boot0)[arguments]: When creating libstdc++-boot0 for the 64bit Hurd, add disable options similar to libstdc++ to #:configure-flags. Change-Id: I00636fa48e38823b00ede7dcbd0c1c23544d898c
This commit is contained in:
parent
877b925df1
commit
62130a7f4d
1 changed files with 8 additions and 0 deletions
|
@ -2288,6 +2288,14 @@ (define (make-libstdc++-boot0 gcc)
|
|||
#:validate-runpath? #f
|
||||
|
||||
,@(substitute-keyword-arguments (package-arguments lib)
|
||||
((#:configure-flags flags)
|
||||
(if (target-hurd64?)
|
||||
#~(cons* "--disable-shared"
|
||||
"--disable-libstdcxx-dual-abi"
|
||||
"--disable-libstdcxx-threads"
|
||||
"--disable-libstdcxx-pch"
|
||||
#$flags)
|
||||
flags))
|
||||
((#:phases phases)
|
||||
#~(modify-phases #$phases
|
||||
(add-after 'unpack 'unpack-gmp&co
|
||||
|
|
Loading…
Reference in a new issue