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
commit 766246c6df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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) [