Remove cross derivation targets that don't make sense
This matches the previous behaviour without using the platform data.
This commit is contained in:
parent
fb8353559f
commit
4b8846a861
1 changed files with 7 additions and 1 deletions
|
|
@ -637,7 +637,13 @@ WHERE job_id = $1")
|
||||||
"x86_64-w64-mingw32"))))
|
"x86_64-w64-mingw32"))))
|
||||||
|
|
||||||
(define cross-derivations
|
(define cross-derivations
|
||||||
`(("x86_64-linux" . ,inf-targets)))
|
`(("x86_64-linux" . ,(remove
|
||||||
|
(lambda (target)
|
||||||
|
;; Remove targets that don't make much sense
|
||||||
|
(member target
|
||||||
|
'("x86_64-linux-gnu"
|
||||||
|
"i686-linux-gnu")))
|
||||||
|
inf-targets))))
|
||||||
|
|
||||||
(define supported-system-pairs
|
(define supported-system-pairs
|
||||||
(map (lambda (system)
|
(map (lambda (system)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue