Skip to content

Commit e51d3a0

Browse files
committed
llvmPackages_10: 10.0.0 -> 10.0.1
This is a purely bugfix release. See: http://lists.llvm.org/pipermail/release-testers/2020-July/001297.html
1 parent 479db27 commit e51d3a0

12 files changed

Lines changed: 13 additions & 185 deletions

File tree

pkgs/development/compilers/llvm/10/clang/clang-extension-handling.patch

Lines changed: 0 additions & 18 deletions
This file was deleted.

pkgs/development/compilers/llvm/10/clang/default.nix

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ let
88
pname = "clang";
99
inherit version;
1010

11-
src = fetch "clang" "08fbxa2a0kr3ni35ckppj0kyvlcyaywrhpqwcdrdy0z900mhcnw8";
11+
src = fetch "clang" "091bvcny2lh32zy8f3m9viayyhb2zannrndni7325rl85cwgr6pr";
1212

1313
unpackPhase = ''
1414
unpackFile $src
@@ -36,9 +36,6 @@ let
3636
];
3737

3838
patches = [
39-
# 10.0.0 only, this should be present in 10.0.1
40-
./clang-extension-handling.patch
41-
4239
./purity.patch
4340
# https://reviews.llvm.org/D51899
4441
./compiler-rt-baremetal.patch

pkgs/development/compilers/llvm/10/compiler-rt.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ in
1111
stdenv.mkDerivation rec {
1212
pname = "compiler-rt";
1313
inherit version;
14-
src = fetch pname "0x9c531k6ww21s2mkdwqx1vbdjmx6d4wmfb8gdbj0wqa796sczba";
14+
src = fetch pname "1yjqjri753w0fzmxcyz687nvd97sbc9rsqrxzpq720na47hwh3fr";
1515

1616
nativeBuildInputs = [ cmake python3 llvm ];
1717
buildInputs = stdenv.lib.optional stdenv.hostPlatform.isDarwin libcxxabi;

pkgs/development/compilers/llvm/10/default.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
}:
66

77
let
8-
release_version = "10.0.0";
9-
version = release_version; # differentiating these (variables) is important for rc's
8+
release_version = "10.0.1";
9+
version = release_version; # differentiating these (variables) is important for RCs
1010
targetConfig = stdenv.targetPlatform.config;
1111

1212
fetch = name: sha256: fetchurl {
1313
url = "https://github.com/llvm/llvm-project/releases/download/llvmorg-${release_version}/${name}-${version}.src.tar.xz";
1414
inherit sha256;
1515
};
1616

17-
clang-tools-extra_src = fetch "clang-tools-extra" "074ija5s2jsdn0k035r2dzmryjmqxdnyg4xwvaqych2bazv8rpxc";
17+
clang-tools-extra_src = fetch "clang-tools-extra" "06n1yp638rh24xdxv9v2df0qajxbjz4w59b7dd4ky36drwmpi4yh";
1818

1919
tools = stdenv.lib.makeExtensible (tools: let
2020
callPackage = newScope (tools // { inherit stdenv cmake libxml2 python3 isl release_version version fetch; });

pkgs/development/compilers/llvm/10/libc++/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ stdenv.mkDerivation {
55
pname = "libc++";
66
inherit version;
77

8-
src = fetch "libcxx" "1isnj78diknh0nvd73mlq8p8g209f9bab2mbysq826bg2wzql3r7";
8+
src = fetch "libcxx" "0v78bfr6h2zifvdqnj2wlfk4pvxzrqn3hg1v6lqk3y12bx9p9xny";
99

1010
postUnpack = ''
1111
unpackFile ${libcxxabi.src}

pkgs/development/compilers/llvm/10/libc++abi.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ stdenv.mkDerivation {
55
pname = "libc++abi";
66
inherit version;
77

8-
src = fetch "libcxxabi" "1q8lrbh68a9v4lr88b8xsjpmwx5z96sa5wnkb92xx7ccm1ssq6z7";
8+
src = fetch "libcxxabi" "0yqs722y76cwvmfsq0lb917r9m3fci7bf5z3yzl71yz9n88ghzm9";
99

1010
nativeBuildInputs = [ cmake ];
1111
buildInputs = stdenv.lib.optional (!stdenv.isDarwin && !stdenv.isFreeBSD && !stdenv.hostPlatform.isWasm) libunwind;

pkgs/development/compilers/llvm/10/libunwind.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
44
pname = "libunwind";
55
inherit version;
66

7-
src = fetch pname "09n66dl9cc17d81qflj5h1l4garmhvzfi2lhcb7rx00l8z65xp09";
7+
src = fetch pname "09syx66idnm2pr46x2vmk0jn3iwdv0lkd04xy4zjbwmz3vn066bl";
88

99
nativeBuildInputs = [ cmake ];
1010

pkgs/development/compilers/llvm/10/lld.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
1010
pname = "lld";
1111
inherit version;
1212

13-
src = fetch pname "026pwcbczcg0j5c9h7hxxrn3ki81ia9m9sfn0sy0bvzffv2xg85r";
13+
src = fetch pname "0ynzi35r4fckvp6842alpd43qr810j3728yfslc66fk2mbh4j52r";
1414

1515
nativeBuildInputs = [ cmake ];
1616
buildInputs = [ llvm libxml2 ];

pkgs/development/compilers/llvm/10/lldb.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ stdenv.mkDerivation (rec {
2020
pname = "lldb";
2121
inherit version;
2222

23-
src = fetch pname "0ddikvc0kbqlqvsypsm9nhfwmyw4prp4rv49f0bgacyh5ssgq7yx";
23+
src = fetch pname "051p5b04y6z3g730rmc2n2v71lipbw7k69riww3a6sl74myfiaq7";
2424

2525
patches = [ ./lldb-procfs.patch ];
2626

pkgs/development/compilers/llvm/10/llvm-extension-handling.patch

Lines changed: 0 additions & 146 deletions
This file was deleted.

0 commit comments

Comments
 (0)