Re: [Faudiostream-users] faust2xxx -soundfile can't find sndfile.h

2020-02-28 Thread Giuseppe Silvi via Faudiostream-users
> On 28 Feb 2020, at 10:42, Dario Sanfilippo wrote: > > Another question while I'm here: since Jack Audio is currently not working on > Catalina, how do you record the stream of, say, a caqt app? https://github.com/ExistentialAudio/BlackHole

Re: [Faudiostream-users] faust2xxx -soundfile can't find sndfile.h

2020-02-28 Thread Stéphane Letz
faust2caqt script uses pkg-config to find libsndfile dependancies. Foe whatever reason this does not work on Dario machine. You may have to search in this direction, how to setup pkg-config and so on... Stéphane > Le 28 févr. 2020 à 19:02, Giuseppe Silvi via Faudiostream-users > a écrit

Re: [Faudiostream-users] faust2xxx -soundfile can't find sndfile.h

2020-02-28 Thread Giuseppe Silvi via Faudiostream-users
i imagine you also had a look inside /usr/local/Cellar/libsndfile/ and all the items are at their place > On 28 Feb 2020, at 18:51, Dario Sanfilippo wrote: > > That doesn't work either. > > > On Fri, 28 Feb 2020 at 16:38, Giuseppe Silvi > wrote: > had you also tried

Re: [Faudiostream-users] faust2xxx -soundfile can't find sndfile.h

2020-02-28 Thread Kjetil Matheussen
Locate the file "sndfile.h" (apple + f), and add that path (-I option) to the faust2caqt script. On Fri, Feb 28, 2020 at 6:53 PM Dario Sanfilippo wrote: > > That doesn't work either. > > > On Fri, 28 Feb 2020 at 16:38, Giuseppe Silvi wrote: >> >> had you also tried the brew link --force

Re: [Faudiostream-users] faust2xxx -soundfile can't find sndfile.h

2020-02-28 Thread Dario Sanfilippo
That doesn't work either. On Fri, 28 Feb 2020 at 16:38, Giuseppe Silvi wrote: > had you also tried the brew link --force libsndfile command? > G > > On 28 Feb 2020, at 12:29, Dario Sanfilippo > wrote: > > > Thanks, Giuseppe. I've already tried that and it didn't work. > > D > > > On Fri, 28

Re: [Faudiostream-users] faust2xxx -soundfile can't find sndfile.h

2020-02-28 Thread Giuseppe Silvi via Faudiostream-users
had you also tried the brew link --force libsndfile command? G > On 28 Feb 2020, at 12:29, Dario Sanfilippo wrote: > > > Thanks, Giuseppe. I've already tried that and it didn't work. > > D > > > On Fri, 28 Feb 2020 at 12:28, Giuseppe Silvi > wrote: > Hello, > >

Re: [Faudiostream-users] faust2xxx -soundfile can't find sndfile.h

2020-02-28 Thread Dario Sanfilippo
Thanks, Giuseppe. I've already tried that and it didn't work. D On Fri, 28 Feb 2020 at 12:28, Giuseppe Silvi wrote: > Hello, > > The sndfile.h is contained in libsndfile. Run brew install *libsndfile to > install it.* > Giuseppe > > On 28 Feb 2020, at 10:45, Dario Sanfilippo > wrote: > > >

Re: [Faudiostream-users] faust2xxx -soundfile can't find sndfile.h

2020-02-28 Thread Giuseppe Silvi via Faudiostream-users
Hello, The sndfile.h is contained in libsndfile. Run brew install libsndfile to install it. Giuseppe > On 28 Feb 2020, at 10:45, Dario Sanfilippo wrote: > > > By the way, this is the exact error from the compiler: > > soundfile.cpp:14206:10: fatal error: 'sndfile.h' file not found >

Re: [Faudiostream-users] faust2xxx -soundfile can't find sndfile.h

2020-02-28 Thread Dario Sanfilippo
By the way, this is the exact error from the compiler: soundfile.cpp:14206:10: fatal error: 'sndfile.h' file not found #include ^~~ 1 error generated. On Fri, 28 Feb 2020 at 10:42, Dario Sanfilippo wrote: > Hello, list. > > I've installed libsndfile with Brew. I've also

[Faudiostream-users] faust2xxx -soundfile can't find sndfile.h

2020-02-28 Thread Dario Sanfilippo
Hello, list. I've installed libsndfile with Brew. I've also made sure that pkg-config is installed (using Brew). But Faust can't find the header file when I try to compile as follows: faust2caqt -double -soundfile soundfile.dsp Would you perhaps know how to fix this? Another question while I'm