summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/cctools
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-12-15 12:26:11 -0600
committerMatthew Bauer <mjbauer95@gmail.com>2018-12-15 12:26:11 -0600
commit0a996c8ef31eb5ffb55d24dc4703fe0fe29589ff (patch)
tree887293da47acfdef0d6d081234ffef2c3e667ed9 /pkgs/os-specific/darwin/cctools
parent921d046537f6d7f0fc0db07b7aa46be7e9df030b (diff)
downloadnixpkgs-0a996c8ef31eb5ffb55d24dc4703fe0fe29589ff.tar
nixpkgs-0a996c8ef31eb5ffb55d24dc4703fe0fe29589ff.tar.gz
nixpkgs-0a996c8ef31eb5ffb55d24dc4703fe0fe29589ff.tar.bz2
nixpkgs-0a996c8ef31eb5ffb55d24dc4703fe0fe29589ff.tar.lz
nixpkgs-0a996c8ef31eb5ffb55d24dc4703fe0fe29589ff.tar.xz
nixpkgs-0a996c8ef31eb5ffb55d24dc4703fe0fe29589ff.tar.zst
nixpkgs-0a996c8ef31eb5ffb55d24dc4703fe0fe29589ff.zip
darwin: use llvm’s dsymutil instead of dummy version
We were previously using a dummy wrapper for dsymutil. This meant that
debug symbols were not getting generated when dsymutil was otherwise
available. This should fix that issue & provide a real dsymutil from
llvm.

Fixes #52148.
Diffstat (limited to 'pkgs/os-specific/darwin/cctools')
-rw-r--r--pkgs/os-specific/darwin/cctools/port.nix7
1 files changed, 0 insertions, 7 deletions
diff --git a/pkgs/os-specific/darwin/cctools/port.nix b/pkgs/os-specific/darwin/cctools/port.nix
index 2bca1bcc1d7..6753c98239d 100644
--- a/pkgs/os-specific/darwin/cctools/port.nix
+++ b/pkgs/os-specific/darwin/cctools/port.nix
@@ -92,13 +92,6 @@ let
       popd
     '';
 
-    postInstall = ''
-      cat >$out/bin/dsymutil << EOF
-      #!${stdenv.shell}
-      EOF
-      chmod +x $out/bin/dsymutil
-    '';
-
     passthru = {
       inherit targetPrefix;
     };