Guidance building for Bela platform

For the sake of future searching etc…, looks like both the pd and sc builds of FluCoMa for pd (arm64) can be found here:

https://files.bela.io/flucoma-pd-arm64.zip
https://files.bela.io/flucoma-sc-arm64.zip

As posted on the bela forum here:

Additionally, steps for compiling are also posted there:

Build flucoma-pd:

Setup

cd ~
git clone --recursive https://github.com/BelaPlatform/libpd/
git clone https://github.com/flucoma/flucoma-pd

Configure and build:

if you have distcc set up:

cmake -DPD_PATH=~/libpd/pure-data -DDOCS=OFF -DCMAKE_CXX_COMPILER=distcc-clang++ -DCMAKE_C_COMPILER=distcc-clang -DCMAKE_C_FLAGS=-Wno-pedantic -DCMAKE_CXX_FLAGS=-Wno-pedantic ..
make -j5

otherwise:

cmake -DPD_PATH=~/libpd/pure-data -DDOCS=OFF .. make

Package:

make install/fast
cd ../release-packaging
zip -r flucoma-pd-arm64.zip FluidCorpusManipulation/
2 Likes