aboutsummaryrefslogtreecommitdiff
path: root/depends/builders/darwin.mk
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2024-01-11 11:59:31 +0000
committerfanquake <fanquake@gmail.com>2024-01-16 09:52:39 +0000
commit42b2283765e28003ba58cf2043870d1e5df5dfe0 (patch)
tree626d4cfd8bba7af51218b8a63769ffdc8cff943a /depends/builders/darwin.mk
parent2ac2821a74efdd0f61f091b0fc774cc386930c95 (diff)
downloadbitcoin-42b2283765e28003ba58cf2043870d1e5df5dfe0.tar.xz
depends: deduplicate use of mmacosx-version-min in macOS build
Diffstat (limited to 'depends/builders/darwin.mk')
-rw-r--r--depends/builders/darwin.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/depends/builders/darwin.mk b/depends/builders/darwin.mk
index 8ed82b276d..eb64c97f64 100644
--- a/depends/builders/darwin.mk
+++ b/depends/builders/darwin.mk
@@ -11,8 +11,8 @@ build_darwin_SHA256SUM=shasum -a 256
build_darwin_DOWNLOAD=curl --location --fail --connect-timeout $(DOWNLOAD_CONNECT_TIMEOUT) --retry $(DOWNLOAD_RETRIES) -o
#darwin host on darwin builder. overrides darwin host preferences.
-darwin_CC=$(shell xcrun -f clang) -mmacosx-version-min=$(OSX_MIN_VERSION) -isysroot$(shell xcrun --show-sdk-path)
-darwin_CXX:=$(shell xcrun -f clang++) -mmacosx-version-min=$(OSX_MIN_VERSION) -stdlib=libc++ -isysroot$(shell xcrun --show-sdk-path)
+darwin_CC=$(shell xcrun -f clang) -isysroot$(shell xcrun --show-sdk-path)
+darwin_CXX:=$(shell xcrun -f clang++) -stdlib=libc++ -isysroot$(shell xcrun --show-sdk-path)
darwin_AR:=$(shell xcrun -f ar)
darwin_RANLIB:=$(shell xcrun -f ranlib)
darwin_STRIP:=$(shell xcrun -f strip)