Skip to content

Commit e8ecec4

Browse files
committed
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.
1 parent b0c2903 commit e8ecec4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

depends/packages/native_libtapi.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ $(package)_sha256_hash=d4d46c64622f13d6938cecf989046d9561011bb59e8ee835f8f39825d
66
$(package)_patches=disable_zlib.patch
77

88
ifeq ($(strip $(FORCE_USE_SYSTEM_CLANG)),)
9-
$(package)_dependencies=native_clang
9+
$(package)_dependencies=native_llvm
1010
endif
1111

1212
define $(package)_preprocess_cmds

depends/packages/native_clang.mk renamed to depends/packages/native_llvm.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package=native_clang
1+
package=native_llvm
22
$(package)_version=17.0.6
33
$(package)_major_version=$(firstword $(subst ., ,$($(package)_version)))
44
$(package)_download_path=https://github.com/llvm/llvm-project/releases/download/llvmorg-$($(package)_version)

depends/packages/packages.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ifneq ($(build_os),darwin)
3333
darwin_native_packages += native_cctools native_libtapi
3434

3535
ifeq ($(strip $(FORCE_USE_SYSTEM_CLANG)),)
36-
darwin_native_packages+= native_clang
36+
darwin_native_packages+= native_llvm
3737
endif
3838

3939
endif

0 commit comments

Comments
 (0)