diff options
author | Peter Trommler <ptrommler@acm.org> | 2021-02-21 17:48:42 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-03-08 07:31:39 -0500 |
commit | 657b5538904f7d9e0b3ea5d84f4017af3c513df9 (patch) | |
tree | fbf0013648329dc8bf20b3f47af7415cb268f4f0 /hadrian/src | |
parent | 3e082f8ff5ea2f42c5e6430094683b26b5818fb8 (diff) | |
download | haskell-657b5538904f7d9e0b3ea5d84f4017af3c513df9.tar.gz |
Hadrian: Add powerpc64[le] to supported arch list
Fixes #19409
Diffstat (limited to 'hadrian/src')
-rw-r--r-- | hadrian/src/Oracles/Setting.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hadrian/src/Oracles/Setting.hs b/hadrian/src/Oracles/Setting.hs index 4331317b68..8634e70b55 100644 --- a/hadrian/src/Oracles/Setting.hs +++ b/hadrian/src/Oracles/Setting.hs @@ -265,7 +265,8 @@ ghcWithInterpreter = do , "freebsd", "dragonfly", "netbsd", "openbsd" , "darwin", "kfreebsdgnu" ] goodArch <- anyTargetArch [ "i386", "x86_64", "powerpc", "sparc" - , "sparc64", "arm", "aarch64", "s390x" ] + , "sparc64", "arm", "aarch64", "s390x" + , "powerpc64", "powerpc64le" ] return $ goodOs && goodArch -- | Check to use @libffi@ for adjustors. |