Merge pull request #54350 from vkleen/llvm-ppc

Support PowerPC in llvm
This commit is contained in:
Matthew Bauer 2019-01-23 17:19:07 -05:00 committed by GitHub
commit 5629e9de9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,6 +12,8 @@ rec {
"ARM"
else if platform.parsed.cpu.family == "mips" then
"Mips"
else if platform.parsed.cpu.family == "power" then
"PowerPC"
else
throw "Unsupported system";