From 1214310f5d276a2283298c039ca3309b86b66658 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 20 Oct 2011 00:15:49 +0000 Subject: [PATCH] Use the right triplet for 1686 Not sure why we're inconsistent between arches there... svn path=/nixpkgs/trunk/; revision=29923 --- pkgs/development/compilers/llvm/clang.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/llvm/clang.nix b/pkgs/development/compilers/llvm/clang.nix index ca205022adb3..9f084c8a1d1d 100644 --- a/pkgs/development/compilers/llvm/clang.nix +++ b/pkgs/development/compilers/llvm/clang.nix @@ -2,7 +2,7 @@ assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux"; let - triplet = if (stdenv.system == "i686-linux") then "i686-unknown-linux-gnu" + triplet = if (stdenv.system == "i686-linux") then "i686-pc-linux-gnu" else if (stdenv.system == "x86_64-linux") then "x86_64-unknown-linux-gnu" else throw "System not supported";