aboutsummaryrefslogtreecommitdiff
path: root/depends/packages
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2023-12-05 12:07:07 +0000
committerfanquake <fanquake@gmail.com>2023-12-21 09:37:33 +0000
commite8ecec45756d7121edfaa1321c597d88ce7ec6db (patch)
tree17a469d12f2bf1391f215c771bfc2b6515e49760 /depends/packages
parentb0c290340c1e1398dc9eb51b3e48a040de3f47d6 (diff)
downloadbitcoin-e8ecec45756d7121edfaa1321c597d88ce7ec6db.tar.xz
build: rename native_clang to native_llvm
This is more correct, as this is downloading LLVM, and already unpacking and using more than just clang.
Diffstat (limited to 'depends/packages')
-rw-r--r--depends/packages/native_libtapi.mk2
-rw-r--r--depends/packages/native_llvm.mk (renamed from depends/packages/native_clang.mk)2
-rw-r--r--depends/packages/packages.mk2
3 files changed, 3 insertions, 3 deletions
diff --git a/depends/packages/native_libtapi.mk b/depends/packages/native_libtapi.mk
index a855c393c6..fb5ab0b4dc 100644
--- a/depends/packages/native_libtapi.mk
+++ b/depends/packages/native_libtapi.mk
@@ -6,7 +6,7 @@ $(package)_sha256_hash=d4d46c64622f13d6938cecf989046d9561011bb59e8ee835f8f39825d
$(package)_patches=disable_zlib.patch
ifeq ($(strip $(FORCE_USE_SYSTEM_CLANG)),)
-$(package)_dependencies=native_clang
+$(package)_dependencies=native_llvm
endif
define $(package)_preprocess_cmds
diff --git a/depends/packages/native_clang.mk b/depends/packages/native_llvm.mk
index da73bf03af..09994eb012 100644
--- a/depends/packages/native_clang.mk
+++ b/depends/packages/native_llvm.mk
@@ -1,4 +1,4 @@
-package=native_clang
+package=native_llvm
$(package)_version=17.0.6
$(package)_major_version=$(firstword $(subst ., ,$($(package)_version)))
$(package)_download_path=https://github.com/llvm/llvm-project/releases/download/llvmorg-$($(package)_version)
diff --git a/depends/packages/packages.mk b/depends/packages/packages.mk
index dd55c939cb..fb52fd4499 100644
--- a/depends/packages/packages.mk
+++ b/depends/packages/packages.mk
@@ -33,7 +33,7 @@ ifneq ($(build_os),darwin)
darwin_native_packages += native_cctools native_libtapi
ifeq ($(strip $(FORCE_USE_SYSTEM_CLANG)),)
-darwin_native_packages+= native_clang
+darwin_native_packages+= native_llvm
endif
endif