Skip to content

Commit 79a8398

Browse files
committed
fix(release) :: update macOS binary to Apple Silicon
Before `sqlpage-macos.tgz` was built for x86_64 and relied on Apple's Rosetta translation layer to run it. As of macOS 26, [Apple Silicon macs no longer ship with Rosetta](https://developer.apple.com/news/?id=w5ngl9k2). As of macOS 27, [Apple drops drops support for Intel macs](https://9to5mac.com/2026/09/01/apple-tells-mac-app-store-developers-they-can-now-drop-intel-support/). So now SQLPage ships arm64 tarballs to continue working on macs running in 2027.
1 parent 170d25d commit 79a8398

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

‎.github/workflows/release.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
target: x86_64-pc-windows-msvc
2727
features: ""
2828
- os: macos-latest
29-
target: x86_64-apple-darwin
29+
target: aarch64-apple-darwin
3030
features: "odbc-static"
3131
steps:
3232
- uses: actions/checkout@v7

‎examples/official-site/your-first-sql-website/tutorial-install-any.md‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ you can skip this step and [start writing your website](#tutorial).
1111
In the _release assets_ section, you will find files named `sqlpage-windows.zip`, `sqlpage-linux.tgz`, and `sqlpage-macos.tgz`.
1212
Download the one that corresponds to your operating system, and extract the executable file from the archive.
1313

14+
`sqlpage-macos.tgz` is built for Apple silicon only as Apple dropped support for Intel Macs after macOS 26. If needed, install SQLPage there with Homebrew, docker, or from source.
15+
1416
> **Note**: On Mac OS, Apple blocks the execution of downloaded files by default. The easiest way to run SQLPage is to use [Homebrew](https://brew.sh).
1517
1618
> **Note**: Advanced users can alternatively install SQLPage using:

0 commit comments

Comments
 (0)