2018-05-10 22:13:52 +01:00
|
|
|
{ lib, targetPlatform }:
|
|
|
|
|
|
|
|
let
|
2021-01-23 01:33:55 +00:00
|
|
|
p = targetPlatform.gcc or {}
|
2018-05-12 20:07:31 +01:00
|
|
|
// targetPlatform.parsed.abi;
|
2018-05-10 22:13:52 +01:00
|
|
|
in lib.concatLists [
|
2019-04-21 17:13:37 +01:00
|
|
|
(lib.optional (!targetPlatform.isx86_64 && p ? arch) "--with-arch=${p.arch}") # --with-arch= is unknown flag on x86_64
|
2018-05-10 22:13:52 +01:00
|
|
|
(lib.optional (p ? cpu) "--with-cpu=${p.cpu}")
|
|
|
|
(lib.optional (p ? abi) "--with-abi=${p.abi}")
|
|
|
|
(lib.optional (p ? fpu) "--with-fpu=${p.fpu}")
|
2018-05-12 20:07:31 +01:00
|
|
|
(lib.optional (p ? float) "--with-float=${p.float}")
|
2018-05-10 22:13:52 +01:00
|
|
|
(lib.optional (p ? mode) "--with-mode=${p.mode}")
|
2018-08-21 20:31:34 +01:00
|
|
|
(lib.optional
|
2021-01-30 03:23:17 +00:00
|
|
|
(let tp = targetPlatform; in tp.isPower && tp.libc == "glibc" && tp.is64bit)
|
2018-08-21 20:31:34 +01:00
|
|
|
"--with-long-double-128")
|
2018-05-10 22:13:52 +01:00
|
|
|
]
|