Library namespace: geps
[fbnet~]
: Pure data external implementing feedback networks as building block for GePS sound modules.
make clean
make
make install
The pd-lib-builder Makefile will figure out where to install the library. To see the install-path, check the build variables:
make vars | grep installpath
Depending on the target OS the install path is not writable by the user. You will need to sudo make install
(i.e. on Raspbian).
When coding in Pd, allways prepend any external name from this library with the library namespace: [geps/fbnet~]
In order to properly debug a running external, you need to disable the gcc optimisations (-O0
) in Makefile.pdlibbuilder
:
alldebug: c.flags += -O0 -g
alldebug: cxx.flags += -O0 -g