From 469ecc709854bb1fd8ff2a68dbc429647ff66f88 Mon Sep 17 00:00:00 2001 From: Viktor Kleen Date: Sat, 19 Jan 2019 17:56:28 -0800 Subject: [PATCH] llvm: support PowerPC --- pkgs/development/compilers/llvm/common.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/compilers/llvm/common.nix b/pkgs/development/compilers/llvm/common.nix index 27f48ff3f113..df0cd29ad5b7 100644 --- a/pkgs/development/compilers/llvm/common.nix +++ b/pkgs/development/compilers/llvm/common.nix @@ -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";