summary refs log tree commit diff
path: root/pkgs/build-support/gcc-wrapper
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-07-26 21:48:10 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-07-26 21:48:10 +0000
commit532fc4a05d4e16fd020f6764c0f12dfd2e86550a (patch)
tree938e8346c5ab426a5b7fc29f766444f1f6b57b8c /pkgs/build-support/gcc-wrapper
parentdcf0a95a72d7fd35e8c1a83b869c9310ee3adb77 (diff)
downloadnixlib-532fc4a05d4e16fd020f6764c0f12dfd2e86550a.tar
nixlib-532fc4a05d4e16fd020f6764c0f12dfd2e86550a.tar.gz
nixlib-532fc4a05d4e16fd020f6764c0f12dfd2e86550a.tar.bz2
nixlib-532fc4a05d4e16fd020f6764c0f12dfd2e86550a.tar.lz
nixlib-532fc4a05d4e16fd020f6764c0f12dfd2e86550a.tar.xz
nixlib-532fc4a05d4e16fd020f6764c0f12dfd2e86550a.tar.zst
nixlib-532fc4a05d4e16fd020f6764c0f12dfd2e86550a.zip
Adding armv5tel to the 'if' checks in stdenv, gcc-wrapper and kernel headers
svn path=/nixpkgs/trunk/; revision=16466
Diffstat (limited to 'pkgs/build-support/gcc-wrapper')
-rw-r--r--pkgs/build-support/gcc-wrapper/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/build-support/gcc-wrapper/default.nix b/pkgs/build-support/gcc-wrapper/default.nix
index d517a472d747..14c75a39dc55 100644
--- a/pkgs/build-support/gcc-wrapper/default.nix
+++ b/pkgs/build-support/gcc-wrapper/default.nix
@@ -54,6 +54,7 @@ stdenv.mkDerivation {
     if !nativeLibc then
       (if stdenv.system == "i686-linux" then "ld-linux.so.2" else
        if stdenv.system == "x86_64-linux" then "ld-linux-x86-64.so.2" else
+       if stdenv.system == "armv5tel-linux" then "ld-linux.so.3" else
        if stdenv.system == "powerpc-linux" then "ld.so.1" else
        abort "don't know the name of the dynamic linker for this platform")
     else "";