Remove cross derivation targets that don't make sense

This matches the previous behaviour without using the platform data.
This commit is contained in:
Christopher Baines 2022-05-27 10:08:54 +01:00
parent fb8353559f
commit 4b8846a861

View file

@ -637,7 +637,13 @@ WHERE job_id = $1")
"x86_64-w64-mingw32"))))
(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
(map (lambda (system)