Skip to content
Snippets Groups Projects
Commit 8fd857f5 authored by Manolis Ragkousis's avatar Manolis Ragkousis
Browse files

gnu: cross-base: Disable libcilkrts in cross-gcc.

* gnu/packages/cross-base.scm (cross-gcc-arguments): Add "--disable-libcilkrts".
parent 4ecfbda7
No related branches found
No related tags found
No related merge requests found
...@@ -100,7 +100,9 @@ (define (cross-gcc-arguments target libc) ...@@ -100,7 +100,9 @@ (define (cross-gcc-arguments target libc)
((#: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 @@ (define (cross-gcc-arguments target libc) ...@@ -116,6 +118,7 @@ (define (cross-gcc-arguments target libc)
"--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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment