Re: [PD-dev] is "dsp_addv" ready for multichannel?

2023-08-09 Thread Alexandre Torres Porres
Thanks Christof! I can swear that at one point I tested something like this by first setting the channels, but I'm of course mistaken ;) Em qua., 9 de ago. de 2023 às 12:08, Christof Ressi escreveu: > Hi, > > the problem is here: > > >

Re: [PD-dev] is "dsp_addv" ready for multichannel?

2023-08-09 Thread Christof Ressi
Hi, the problem is here: https://github.com/porres/pd-else/blob/2d53dfa7bd02b1fd102dbad7a2f9799df0a32e37/Code_source/Compiled/signal/xgate.mc~.c#L67-L68 signal_setmultiout() changes the signal pointer, so you must call it /before /assigning the signal pointer to the arg vector for dsp_addv()!

Re: [PD-dev] is "dsp_addv" ready for multichannel?

2023-08-09 Thread Alexandre Torres Porres
Ok, I tried building my new object and it crashes Pd as I expected. Here's the original [xgate~] code, and I'm highlighting a specific line in it because the same thing in the "mc" version is what's crashing Pd.

Re: [PD-dev] compiling externals with gnu gsl library

2023-08-09 Thread Lucas Cordiviola
Hi, https://www.gnu.org/software/gsl/doc/html/usage.html#shared-libraries you can define for all OSs in the main makefile: ldlibs += -static -lgsl or for an specific OS (also in the main makefile) define forWindows     ldlibs += -static -lgsl endef untested. Lucarda. Mensaje telepatico