docs: document different macOS versions needed for building vs running

This commit is contained in:
Cœur
2026-02-04 02:28:41 +01:00
committed by GitHub
parent bd4f81f87c
commit 507a348611
2 changed files with 7 additions and 4 deletions

View File

@@ -32,8 +32,8 @@ For a more detailed description, and dependencies, visit [How to Build Transmiss
### Building a Transmission release from the command line
```bash
$ tar xf transmission-4.0.6.tar.xz
$ cd transmission-4.0.6
$ tar xf transmission-4.1.0.tar.xz
$ cd transmission-4.1.0
# Use -DCMAKE_BUILD_TYPE=RelWithDebInfo to build optimized binary with debug information. (preferred)
# Use -DCMAKE_BUILD_TYPE=Release to build full optimized binary.
$ cmake -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo

View File

@@ -2,9 +2,12 @@
The source code for both official and nightly releases can be found on our [download page](https://transmissionbt.com/download/).
## On macOS ##
Software prerequisites:
While the prerequisites for running the app are:
* macOS 11.0 or newer
* Xcode 12.5.1 or newer
The actual software prerequisites for building the app are based on GitHub Actions [macos-14](https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md):
* macOS 14.8.3 or newer
* Xcode 15.0.1 or newer
Building the project on Mac requires the source to be retrieved from GitHub. Pre-packaged source code will not compile.
```bash