summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorRoman Kuznetsov <roman@kuznero.com>2017-10-05 23:58:38 +0200
committerRoman Kuznetsov <roman@kuznero.com>2017-10-25 07:55:32 +0200
commit71202f81aacd9c86b38e23af3c9eff7d100f956c (patch)
treee81d0ac705ecab461af975992ffd13073890a322 /pkgs/development/compilers
parent9356779fb325cfbf54433d0b29de8da2e4b019b7 (diff)
downloadnixpkgs-71202f81aacd9c86b38e23af3c9eff7d100f956c.tar
nixpkgs-71202f81aacd9c86b38e23af3c9eff7d100f956c.tar.gz
nixpkgs-71202f81aacd9c86b38e23af3c9eff7d100f956c.tar.bz2
nixpkgs-71202f81aacd9c86b38e23af3c9eff7d100f956c.tar.lz
nixpkgs-71202f81aacd9c86b38e23af3c9eff7d100f956c.tar.xz
nixpkgs-71202f81aacd9c86b38e23af3c9eff7d100f956c.tar.zst
nixpkgs-71202f81aacd9c86b38e23af3c9eff7d100f956c.zip
Remove old patches
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/coreclr/default.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/pkgs/development/compilers/coreclr/default.nix b/pkgs/development/compilers/coreclr/default.nix
index 6d4e611a37e..ca0df6f3644 100644
--- a/pkgs/development/compilers/coreclr/default.nix
+++ b/pkgs/development/compilers/coreclr/default.nix
@@ -47,22 +47,8 @@ stdenv.mkDerivation rec {
   ];
 
   configurePhase = ''
-    # Prevent clang-3.5 (rather than just clang) from being selected as the compiler as that's
-    # not wrapped
-    # substituteInPlace src/pal/tools/gen-buildsys-clang.sh --replace "which \"clang-\$" "which \"clang-DoNotFindThisOne\$"
-
     patchShebangs build.sh
     patchShebangs src/pal/tools/gen-buildsys-clang.sh
-
-    # See https://github.com/dotnet/coreclr/issues/7573#issuecomment-253081323
-    ed -v ./src/pal/src/include/pal/palinternal.h << EOF
-    /^#undef memcpy
-    -1
-    d
-    +1
-    d
-    w
-    EOF
   '';
 
   BuildArch = if stdenv.is64bit then "x64" else "x86";