Skip to content

Commit fb61bc0

Browse files
committed
depends: Bump MacOS minimum runtime requirement to 11.0
This is necessary as the new fixup_chains linker behavior is only valid when the runtime target is >=11.0.
1 parent c2cd472 commit fb61bc0

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Diff for: .cirrus.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ task:
314314
<< : *CIRRUS_EPHEMERAL_WORKER_TEMPLATE_ENV
315315

316316
task:
317-
name: 'macOS 10.15 [gui, no tests] [jammy]'
317+
name: 'macOS 11.0 [gui, no tests] [jammy]'
318318
<< : *CONTAINER_DEPENDS_TEMPLATE
319319
container:
320320
docker_arguments:

Diff for: contrib/devtools/symbol-check.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def check_MACHO_libraries(binary) -> bool:
232232
return ok
233233

234234
def check_MACHO_min_os(binary) -> bool:
235-
if binary.build_version.minos == [10,15,0]:
235+
if binary.build_version.minos == [11,0,0]:
236236
return True
237237
return False
238238

Diff for: contrib/devtools/test-symbol-check.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def test_MACHO(self):
121121
}
122122
''')
123123

124-
self.assertEqual(call_symbol_check(cc, source, executable, ['-Wl,-platform_version','-Wl,macos', '-Wl,10.15', '-Wl,11.4']),
124+
self.assertEqual(call_symbol_check(cc, source, executable, ['-Wl,-platform_version','-Wl,macos', '-Wl,11.0', '-Wl,11.4']),
125125
(1, f'{executable}: failed SDK'))
126126

127127
def test_PE(self):

Diff for: depends/hosts/darwin.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
OSX_MIN_VERSION=10.15
1+
OSX_MIN_VERSION=11.0
22
OSX_SDK_VERSION=11.0
33
XCODE_VERSION=12.2
44
XCODE_BUILD_ID=12B45b

Diff for: doc/release-notes-empty-template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Compatibility
3636
==============
3737

3838
Bitcoin Core is supported and extensively tested on operating systems
39-
using the Linux kernel, macOS 10.15+, and Windows 7 and newer. Bitcoin
39+
using the Linux kernel, macOS 11.0+, and Windows 7 and newer. Bitcoin
4040
Core should also work on most other Unix-like systems but is not as
4141
frequently tested on them. It is not recommended to use Bitcoin Core on
4242
unsupported systems.

Diff for: share/qt/Info.plist.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<plist version="0.9">
44
<dict>
55
<key>LSMinimumSystemVersion</key>
6-
<string>10.15.0</string>
6+
<string>11</string>
77

88
<key>LSArchitecturePriority</key>
99
<array>

0 commit comments

Comments
 (0)