Hi all, I'm getting the following error trying to compile a Karplus-Strong 8-voice render.cpp
example from the Faust IDE (using MIDI and GUI):
Building render.cpp...
/root/Bela/projects/karplus/render.cpp:6783:41: error: no viable conversion from 'void (oscpkt::Message *, void *)' to 'std::function<void (oscpkt::Message *, const char *, void *)>'
fReceiver.setup(fInputPort, oscMessageReceived, this);
^~~~~~~~~~~~~~~~~~
/usr/bin/../lib/gcc/arm-linux-gnueabihf/6.3.0/../../../../include/c++/6.3.0/functional:1868:7: note: candidate constructor not viable: no known conversion from 'void (oscpkt::Message *, void *)' to 'nullptr_t' for 1st argument
function(nullptr_t) noexcept
^
/usr/bin/../lib/gcc/arm-linux-gnueabihf/6.3.0/../../../../include/c++/6.3.0/functional:1879:7: note: candidate constructor not viable: no known conversion from 'void (oscpkt::Message *, void *)' to 'const std::function<void (oscpkt::Message *, const char *, void *)> &' for 1st argument
function(const function& __x);
^
/usr/bin/../lib/gcc/arm-linux-gnueabihf/6.3.0/../../../../include/c++/6.3.0/functional:1888:7: note: candidate constructor not viable: no known conversion from 'void (oscpkt::Message *, void *)' to 'std::function<void (oscpkt::Message *, const char *, void *)> &&' for 1st argument
function(function&& __x) : _Function_base()
^
/usr/bin/../lib/gcc/arm-linux-gnueabihf/6.3.0/../../../../include/c++/6.3.0/functional:1914:2: note: candidate template ignored: substitution failure [with _Functor = void (*)(oscpkt::Message *, void *), $1 = void]: no type named 'type' in 'std::result_of<void (*&(oscpkt::Message *, const char *, void *))(oscpkt::Message *, void *)>'
function(_Functor);
^
./libraries/OscReceiver/OscReceiver.h:39:94: note: passing argument to parameter 'on_receive' here
void setup(int port, std::function<void(oscpkt::Message* msg, const char* addr, void* arg)> on_receive, void* callbackArg = nullptr);
^
1 error generated.
Makefile:512: recipe for target '/root/Bela/projects/karplus/build/render.o' failed
make: *** [/root/Bela/projects/karplus/build/render.o] Error 1
Connection to 192.168.7.2 closed.
Any way out of this?