about summary refs log tree commit diff
path: root/pkgs/build-support/cc-wrapper
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-02-05 00:47:23 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2017-01-25 00:01:51 +0200
commit7c8a060c09799eb2ee70c00aa695ff08e5f07c6f (patch)
treed346e6bc9c7b2bf20d8c2240a66a2ff91fdaedfc /pkgs/build-support/cc-wrapper
parent41fd1ed90346a3d7f6b067301ac9e147ef4dcd5e (diff)
downloadnixlib-7c8a060c09799eb2ee70c00aa695ff08e5f07c6f.tar
nixlib-7c8a060c09799eb2ee70c00aa695ff08e5f07c6f.tar.gz
nixlib-7c8a060c09799eb2ee70c00aa695ff08e5f07c6f.tar.bz2
nixlib-7c8a060c09799eb2ee70c00aa695ff08e5f07c6f.tar.lz
nixlib-7c8a060c09799eb2ee70c00aa695ff08e5f07c6f.tar.xz
nixlib-7c8a060c09799eb2ee70c00aa695ff08e5f07c6f.tar.zst
nixlib-7c8a060c09799eb2ee70c00aa695ff08e5f07c6f.zip
stdenv: Bringup aarch64 architecture support
Diffstat (limited to 'pkgs/build-support/cc-wrapper')
-rw-r--r--pkgs/build-support/cc-wrapper/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/build-support/cc-wrapper/default.nix b/pkgs/build-support/cc-wrapper/default.nix
index 95e0b360937a..95c6bee3cc77 100644
--- a/pkgs/build-support/cc-wrapper/default.nix
+++ b/pkgs/build-support/cc-wrapper/default.nix
@@ -272,6 +272,7 @@ stdenv.mkDerivation {
        if stdenv.system == "x86_64-linux" then "ld-linux-x86-64.so.2" else
        # ARM with a wildcard, which can be "" or "-armhf".
        if stdenv.isArm then "ld-linux*.so.3" else
+       if stdenv.system == "aarch64-linux" then "ld-linux-aarch64.so.1" else
        if stdenv.system == "powerpc-linux" then "ld.so.1" else
        if stdenv.system == "mips64el-linux" then "ld.so.1" else
        if stdenv.system == "x86_64-darwin" then "/usr/lib/dyld" else