From 98cd7315da294c3d395749f30b2ed9d587168655 Mon Sep 17 00:00:00 2001 From: ann0see <20726856+ann0see@users.noreply.github.com> Date: Thu, 25 Jun 2026 22:41:53 +0200 Subject: [PATCH 1/2] Update Apple Silicon build instructions --- COMPILING.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/COMPILING.md b/COMPILING.md index 8ef78b5efe..76b61a5103 100644 --- a/COMPILING.md +++ b/COMPILING.md @@ -119,7 +119,8 @@ brew link Qt@5 --force ### Generate Xcode Project file -`qmake -spec macx-xcode Jamulus.pro` +`qmake QMAKE_APPLE_DEVICE_ARCHS=arm64 QT_ARCH=arm64 -spec macx-xcode Jamulus.pro` +**Note:** if you still build on x86_64, not Apple silicon, you must replace `arm64` with `x86_64`. ### Print build targets and configuration in console @@ -149,6 +150,7 @@ Schemes: `xcodebuild build` Will build the file and make it available in `./Release/Jamulus.app` +In order to run the application, you might need to run `macdeployqt ./Release/Jamulus.app`. If you want to build the installer, please run the `deploy_mac.sh` script: `./mac/deploy_mac.sh`. You'll find the installer in the deploy/ folder. From bcfe2c8c058ce4f30b27a39c647adfa2e15c537c Mon Sep 17 00:00:00 2001 From: ann0see <20726856+ann0see@users.noreply.github.com> Date: Sun, 28 Jun 2026 18:57:38 +0200 Subject: [PATCH 2/2] Fix typo --- COMPILING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/COMPILING.md b/COMPILING.md index 76b61a5103..0b8ce66811 100644 --- a/COMPILING.md +++ b/COMPILING.md @@ -120,7 +120,7 @@ brew link Qt@5 --force ### Generate Xcode Project file `qmake QMAKE_APPLE_DEVICE_ARCHS=arm64 QT_ARCH=arm64 -spec macx-xcode Jamulus.pro` -**Note:** if you still build on x86_64, not Apple silicon, you must replace `arm64` with `x86_64`. +**Note:** if you still build on x86_64, not Apple Silicon, you must replace `arm64` with `x86_64`. ### Print build targets and configuration in console