Skip to content

Instantly share code, notes, and snippets.

@arirusso
Last active May 4, 2016 23:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arirusso/a61aea89af8a980a4cefeeb401115d2b to your computer and use it in GitHub Desktop.
Save arirusso/a61aea89af8a980a4cefeeb401115d2b to your computer and use it in GitHub Desktop.
Build Mutable Instruments Peaks software

Build Mutable Instruments Peaks software

This is what I used to build Peaks using OSX 10.11.4

Install GCC ARM Toolchain

brew tap PX4/homebrew-px4
brew update
brew install gcc-arm-none-eabi

Install Mutable Repo

git clone git@github.com:pichenettes/eurorack.git
cd eurorack
git submodule init && git submodule update

Misc changes for local config

export PYTHONPATH=PYTHONPATH:.

Edit stmlib/makefile.inc

Replace (line 29) TOOLCHAIN_PATH ?= /usr/local/arm with TOOLCHAIN_PATH ?= /usr/local/

Build

make -d -f peaks/makefile wav

Commit

Due to editor formatting discrepancies, I need to use

git diff -w --no-color | git apply --cached --ignore-whitespace

instead of git add to commit changes to existing files

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment