Cross-compile VCV Rack plugins for all supported platforms with a single command on any GNU/Linux-based distribution.
Analyze plugin source code using open source static analysis tools (for example: cppcheck).
The following platforms and architectures are supported by the VCV Rack Plugin Toolchain:
Platform | Architecture |
---|---|
GNU/Linux | x64 |
Windows | x64 |
macOS | x64, arm64 |
All supported platforms and architectures will be built by cross-compilation in a GNU/Linux-based environment.
Cross-platform support for using the toolchain on non-GNU/Linux platforms is provided via Docker (see below).
Clone this repository in a path without spaces, or the Makefile will break.
Obtain MacOSX12.3.sdk.tar.xz
using the instructions at https://github.com/tpoechtrager/osxcross#packaging-the-sdk, and place it in the root of this repository.
You must have access to a Mac computer with Xcode 13.3.0–13.4.1 or 14.0–14.0.1 to generate this SDK package. You must use this specific SDK version to build the toolchains.
There are two ways to build the toolchains:
NOTE: The official VCV Rack plugin build system is based on Arch Linux.
Requires a GNU/Linux host.
Install toolchain build dependencies. On Arch Linux,
sudo pacman -Syu
make dep-arch-linux
or on Ubuntu,
sudo apt-get update
make dep-ubuntu
Build toolchains for all three platforms.
make toolchain-all
Each toolchain will take around an hour to build and will require network access, about 8 GB free RAM, and about 15 GB free disk space. The final disk space after building is about 3.7 GB.
Build your plugin.
make -j$(nproc) plugin-build PLUGIN_DIR=...
Built plugin packages are placed in the plugin-build/
directory.
Analyze your plugin source code.
make -j$(nproc) plugin-analyze PLUGIN_DIR=...
Works on any operating system with Docker installed.
IMPORTANT: Do not invoke the Docker-based toolchain with sudo
! There is no need to do so and it will not work correctly.
Instead, follow the instructions to let non-root users manage Docker containers: https://docs.docker.com/engine/install/linux-postinstall/
Build the Docker container with toolchains for all platforms.
make docker-build
Optional: Pass number of jobs to use to for the tool chain build with the JOBS
environment variable.
JOBS=$(nproc) make docker-build
(Just passing -j$(nproc)
directly will not work due to the different build systems used in the toolchain build process.)
Build your plugin.
make -j$(nproc) docker-plugin-build PLUGIN_DIR=...
Built plugin packages are placed in the plugin-build/
directory.
Analyze plugin source code.
make -j$(nproc) docker-plugin-analyze PLUGIN_DIR=...
MAKE=make
to the build command::MAKE=make make -j$(nproc) docker-plugin-build PLUGIN_DIR=...
The latest Rack SDKs for all supported platforms are downloaded during the toolchain build.
The SDKs can be updated to the latest version (defined in the Makefile
) as follows:
make rack-sdk-clean
make rack-sdk-all
This is especially convenient for the Docker-based toolchain, because it does not require to rebuild the entire toolchain to update to the latest SDK.
Thanks to @cschol for help with crosstool-ng, Ubuntu, Docker, and testing.