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
|
@ -100,7 +100,9 @@ may be either a libc package or #f.)"
|
||||||
((#:configure-flags flags)
|
((#:configure-flags flags)
|
||||||
`(append (list ,(string-append "--target=" target)
|
`(append (list ,(string-append "--target=" target)
|
||||||
,@(if libc
|
,@(if libc
|
||||||
'()
|
`( ;; Disable libcilkrts because it is not
|
||||||
|
;; ported to GNU/Hurd.
|
||||||
|
"--disable-libcilkrts")
|
||||||
`( ;; Disable features not needed at this stage.
|
`( ;; Disable features not needed at this stage.
|
||||||
"--disable-shared" "--enable-static"
|
"--disable-shared" "--enable-static"
|
||||||
|
|
||||||
|
@ -116,6 +118,7 @@ may be either a libc package or #f.)"
|
||||||
"--disable-libssp"
|
"--disable-libssp"
|
||||||
"--disable-libquadmath"
|
"--disable-libquadmath"
|
||||||
"--disable-decimal-float" ;would need libc
|
"--disable-decimal-float" ;would need libc
|
||||||
|
"--disable-libcilkrts"
|
||||||
)))
|
)))
|
||||||
|
|
||||||
,(if libc
|
,(if libc
|
||||||
|
|
Loading…
Reference in New Issue