Skip to content

Commit 538ccae

Browse files
committed
Merge bitcoin/bitcoin#31048: build: Bump minimum supported macOS to 13.0
a0e089a build: Bump minimum supported macOS to 13.0 (Hennadii Stepanov) Pull request description: Running Bitcoin Core on unsupported OSes may expose users to security issues. macOS Monterey 12 received its final security update ([12.7.6](https://support.apple.com/en-us/100100)) on July 2024. Apple classifies the hardware that can run macOS 12 at most as ["obsolete worldwide"](https://support.apple.com/en-us/102772). ACKs for top commit: maflcko: lgtm ACK a0e089a m3dwards: ACK a0e089a itornaza: reACK a0e089a Tree-SHA512: b219730de87bcb2bcb40a972e910f516c739a538b0741fc245d23df04650f7e2f5774c38c1d1c9c053ed9e2a377488002feb708e8c7cba9c0070b81169719b10
2 parents 0ca1d1b + a0e089a commit 538ccae

File tree

6 files changed

+5
-7
lines changed

6 files changed

+5
-7
lines changed

contrib/devtools/symbol-check.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def check_MACHO_libraries(binary) -> bool:
235235
return ok
236236

237237
def check_MACHO_min_os(binary) -> bool:
238-
if binary.build_version.minos == [11,0,0]:
238+
if binary.build_version.minos == [13,0,0]:
239239
return True
240240
return False
241241

contrib/devtools/test-symbol-check.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def test_MACHO(self):
116116
}
117117
''')
118118

119-
self.assertEqual(call_symbol_check(cxx, source, executable, ['-Wl,-platform_version','-Wl,macos', '-Wl,11.0', '-Wl,11.4']),
119+
self.assertEqual(call_symbol_check(cxx, source, executable, ['-Wl,-platform_version','-Wl,macos', '-Wl,13.0', '-Wl,11.4']),
120120
(1, f'{executable}: failed SDK'))
121121

122122
def test_PE(self):

depends/hosts/darwin.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
OSX_MIN_VERSION=11.0
1+
OSX_MIN_VERSION=13.0
22
OSX_SDK_VERSION=14.0
33
XCODE_VERSION=15.0
44
XCODE_BUILD_ID=15A240d

doc/build-osx.md

-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ To install, run the following from your terminal:
5151
brew install cmake boost pkg-config libevent
5252
```
5353

54-
For macOS 11 (Big Sur) and 12 (Monterey) you need to install a more recent version of llvm.
55-
5654
``` bash
5755
brew install llvm
5856
```

doc/release-notes-empty-template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Compatibility
4343
==============
4444

4545
Bitcoin Core is supported and extensively tested on operating systems
46-
using the Linux Kernel 3.17+, macOS 11.0+, and Windows 7 and newer. Bitcoin
46+
using the Linux Kernel 3.17+, macOS 13.0+, and Windows 7 and newer. Bitcoin
4747
Core should also work on most other Unix-like systems but is not as
4848
frequently tested on them. It is not recommended to use Bitcoin Core on
4949
unsupported systems.

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>11</string>
6+
<string>13</string>
77

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

0 commit comments

Comments
 (0)