Merge pull request #112843 from r-burns/gcc-ppc-m32

gcc: support -m32 on ppc64le
This commit is contained in:
Jörg Thalheim
2021-02-27 22:23:36 +00:00
committed by GitHub

View File

@@ -144,6 +144,10 @@ let
(lib.enableFeature enablePlugin "plugin")
]
# Support -m32 on powerpc64le
++ lib.optional (targetPlatform.system == "powerpc64le-linux")
"--enable-targets=powerpcle-linux"
# Optional features
++ lib.optional (isl != null) "--with-isl=${isl}"
++ lib.optionals (cloog != null) [