Note: Official snapshot builds of Mixxx for Apple Silicon are now available for download here. These are recommended for most users and can also be installed via Homebrew:
brew tap homebrew/cask-versions brew install --cask mixxx-snapshot
Unofficial Apple Silicon (arm64 macOS) builds of the free and open source DJ software Mixxx.
Get the most recent binaries from GitHub Releases here.
Alternatively you can install m1xxx via Homebrew using
brew tap fwcd/fwcd
brew install --cask m1xxxThis has the additional advantage of making it easy to upgrade or remove m1xxx.
Mixxx traditionally only provided builds for x86-64 macOS. While these run fine under Rosetta 2, native Mixxx builds for arm64 run at roughly half the CPU load and feel noticeably more snappy than the x86-64 version.
This repo provides native builds for arm64 that are cross-compiled from GitHub's x86-64 Actions runners.
Both the mixxx and the vcpkg branch now use the official upstream revisions.
While the CI workflows in this repo mainly deal with the case of cross-compiling Mixxx from x86-64 macOS runners to arm64, it is also possible to compile directly from an arm64 macOS (Apple Silicon) host.
First, make sure to have Homebrew installed and the submodules in this repo checked out (using git submodule update). To install the system dependencies, run:
scripts/install-macos-depsTo compile and install Mixxx's dependencies into vcpkg run:
scripts/bootstrap-vcpkg
scripts/install-vcpkg-depsNote: If vcpkg produces a 'missing Python' error message, make sure to have
pythonon your PATH, e.g. by symlinking it topython3withln -s /opt/homebrew/bin/python3 /usr/local/bin/python.
To build Mixxx, run:
scripts/configure-mixxx
scripts/build-mixxxNote: These instructions are not fully tested yet and may still cause build failures.
To build for iOS, install the system dependencies as above, make sure the submodules are checked out and install the dependencies by running:
scripts/bootstrap-vcpkg
scripts/install-vcpkg-deps --target arm64-ios-releaseTip
You can also (experimentally) build with Qt 5 using
scripts/install-vcpkg-deps --qt5 --target arm64-ios-releaseTo configure Mixxx, run:
scripts/configure-mixxx --target arm64-ios-releaseTip
To (experimentally) build with Qt 5, set --qt5
The Xcode project at build/mixxx.xcodeproj should then contain an iOS target for Mixxx.
Thanks to daschuer for the work involved in backporting the relevant Qt patches, parts of the CI workflows and assistance in building the dependencies!