Skip to content

Commit c2cd472

Browse files
committed
depends: bump darwin clang to 11.1
Unfortunately clang 10 does not understand "-mmacosx-version-min=11.0", as it expects to see only 10.x. Bump minimally to 11.1 to fix that problem. This will likely be our last binary toolchain bump, as it will soon be replaced with usage of upstream vanilla llvm.
1 parent a7261da commit c2cd472

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

contrib/guix/manifest.scm

+1-1
Original file line numberDiff line numberDiff line change
@@ -608,5 +608,5 @@ inspecting signatures in Mach-O binaries.")
608608
((string-contains target "-linux-")
609609
(list (make-bitcoin-cross-toolchain target)))
610610
((string-contains target "darwin")
611-
(list clang-toolchain-10 binutils cmake-minimal xorriso python-signapple))
611+
(list clang-toolchain-11 binutils cmake-minimal xorriso python-signapple))
612612
(else '())))))

depends/packages/native_clang.mk

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package=native_clang
2-
$(package)_version=10.0.1
2+
$(package)_version=11.1.0
33
$(package)_download_path=https://github.com/llvm/llvm-project/releases/download/llvmorg-$($(package)_version)
44
ifneq (,$(findstring aarch64,$(BUILD)))
55
$(package)_file_name=clang+llvm-$($(package)_version)-aarch64-linux-gnu.tar.xz
6-
$(package)_sha256_hash=90dc69a4758ca15cd0ffa45d07fbf5bf4309d47d2c7745a9f0735ecffde9c31f
6+
$(package)_sha256_hash=18df38247af3fba0e0e2991fb00d7e3cf3560b4d3509233a14af699ef0039e1c
77
else
88
$(package)_file_name=clang+llvm-$($(package)_version)-x86_64-linux-gnu-ubuntu-16.04.tar.xz
9-
$(package)_sha256_hash=48b83ef827ac2c213d5b64f5ad7ed082c8bcb712b46644e0dc5045c6f462c231
9+
$(package)_sha256_hash=c691a558967fb7709fb81e0ed80d1f775f4502810236aa968b4406526b43bee1
1010
endif
1111

1212
define $(package)_stage_cmds

0 commit comments

Comments
 (0)