mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: cross-base: Disable libcilkrts in cross-gcc.
* gnu/packages/cross-base.scm (cross-gcc-arguments): Add "--disable-libcilkrts".
This commit is contained in:
parent
4ecfbda72e
commit
8fd857f5da
1 changed files with 4 additions and 1 deletions
|
@ -100,7 +100,9 @@ (define (cross-gcc-arguments target libc)
|
|||
((#:configure-flags flags)
|
||||
`(append (list ,(string-append "--target=" target)
|
||||
,@(if libc
|
||||
'()
|
||||
`( ;; Disable libcilkrts because it is not
|
||||
;; ported to GNU/Hurd.
|
||||
"--disable-libcilkrts")
|
||||
`( ;; Disable features not needed at this stage.
|
||||
"--disable-shared" "--enable-static"
|
||||
|
||||
|
@ -116,6 +118,7 @@ (define (cross-gcc-arguments target libc)
|
|||
"--disable-libssp"
|
||||
"--disable-libquadmath"
|
||||
"--disable-decimal-float" ;would need libc
|
||||
"--disable-libcilkrts"
|
||||
)))
|
||||
|
||||
,(if libc
|
||||
|
|
Loading…
Reference in a new issue