Csound Csound-dev Csound-tekno Search About

[Csnd] Error pvanal not found

Date2021-12-17 08:52
Fromluis antunes pena
Subject[Csnd] Error pvanal not found
Dera all,

I'm getting an error while using the utility pvanal. It seams like csound can't find the pvanal utility. I can see that both pvanal and the library libstdutil.dylib are there in /usr/local/bin/pvanal and /Library/Frameworks/CsoundLib64.framework/Versions/6.0/Resources/Opcodes64/librtjack.dylib

I tried in both mac os 11.6 and 10.12.6 with the same result. Is csound missing some environment variable to know where pvanal is? Any ideas what the problenm could be?

You can see the output of the terminal bellow.

Best,

Luís


csound -U pvanal -n 1024 -c 1 -w 4 /Users/luisantunespena/Sync/arbeit/komp/2020-EinHauchVonWut/csnd/ssdir/EinHauchVonWut_Experiments01-1.aif /Users/luisantunespena/Sync/arbeit/komp/2020-EinHauchVonWut/csnd/sadir/EinHauchVonWut_Experiments01-1.pvx
0dBFS level = 32768.0
--Csound version 6.16 (double samples) Aug 23 2021
[commit: c7601d11f029f24590917d4a1797e247eafdef21]
libsndfile-1.0.28
Error: utility 'pvanal' not found
WARNING: could not open library '/Library/Frameworks/CsoundLib64.framework/Versions/6.0/Resources/Opcodes64/libfluidOpcodes.dylib' (-1)
WARNING: could not open library '/Library/Frameworks/CsoundLib64.framework/Versions/6.0/Resources/Opcodes64/libstdutil.dylib' (-1)
WARNING: could not open library '/Library/Frameworks/CsoundLib64.framework/Versions/6.0/Resources/Opcodes64/libvirtual.dylib' (-1)
WARNING: could not open library '/Library/Frameworks/CsoundLib64.framework/Versions/6.0/Resources/Opcodes64/librtjack.dylib' (-1)
end of score.           overall amps:      0.0
       overall samples out of range:        0
0 errors in performance
Elapsed time at end of performance: real: 0.001s, CPU: 0.001s



Luís Antunes Pena
http://luisantunespena.eu


Date2021-12-17 09:37
FromVictor Lazzarini
SubjectRe: [Csnd] [EXTERNAL] [Csnd] Error pvanal not found
It should be OPCODE6DIR64, but you would not get such warnings if that was not set etc. They are issued if Csound tries to load them but can’t.
So that’s generally because of missing dependencies to these libraries. 

- In the case of librtjack it’s because you don’t have jack installed, that’s fine.
- libvirtual depends on FLTK and that is not found either, because we’re not shipping it on MacOS (and in fact libvirtual should not be built anymore, it’s a mistake that it is there)
- llibfluidsynth.dylib also depends on Jack being installed so that’s why it’s not loading

Ah, I see, there’s a link name error in libstdutil that’s causing that problem. It is point to the wrong libsndfile.
Here’s the command to fix this

sudo install_name_tool -change libsndfile.1.dylib @loader_path/../../../../libs/libsndfile.1.dylib /Library/Frameworks/CsoundLib64.framework/Resources/Opcodes64/libstdutil.dylib

I’ll try and replace the installer to fix this.
========================
Prof. Victor Lazzarini
Maynooth University
Ireland

> On 17 Dec 2021, at 08:52, luis antunes pena  wrote:
> 
> WARNINGThis email originated from outside of Maynooth University's Mail System. Do not reply, click links or open attachments unless you recognise the sender and know the content is safe.
> Dera all,
> 
> I'm getting an error while using the utility pvanal. It seams like csound can't find the pvanal utility. I can see that both pvanal and the library libstdutil.dylib are there in /usr/local/bin/pvanal and /Library/Frameworks/CsoundLib64.framework/Versions/6.0/Resources/Opcodes64/librtjack.dylib 
> 
> I tried in both mac os 11.6 and 10.12.6 with the same result. Is csound missing some environment variable to know where pvanal is? Any ideas what the problenm could be?
> 
> You can see the output of the terminal bellow.
> 
> Best,
> 
> Luís
> 
> 
> csound -U pvanal -n 1024 -c 1 -w 4 /Users/luisantunespena/Sync/arbeit/komp/2020-EinHauchVonWut/csnd/ssdir/EinHauchVonWut_Experiments01-1.aif /Users/luisantunespena/Sync/arbeit/komp/2020-EinHauchVonWut/csnd/sadir/EinHauchVonWut_Experiments01-1.pvx
> 0dBFS level = 32768.0
> --Csound version 6.16 (double samples) Aug 23 2021
> [commit: c7601d11f029f24590917d4a1797e247eafdef21]
> libsndfile-1.0.28
> Error: utility 'pvanal' not found
> WARNING: could not open library '/Library/Frameworks/CsoundLib64.framework/Versions/6.0/Resources/Opcodes64/libfluidOpcodes.dylib' (-1)
> WARNING: could not open library '/Library/Frameworks/CsoundLib64.framework/Versions/6.0/Resources/Opcodes64/libstdutil.dylib' (-1)
> WARNING: could not open library '/Library/Frameworks/CsoundLib64.framework/Versions/6.0/Resources/Opcodes64/libvirtual.dylib' (-1)
> WARNING: could not open library '/Library/Frameworks/CsoundLib64.framework/Versions/6.0/Resources/Opcodes64/librtjack.dylib' (-1)
> end of score.           overall amps:      0.0
>        overall samples out of range:        0
> 0 errors in performance
> Elapsed time at end of performance: real: 0.001s, CPU: 0.001s
> 
> 
> 
> Luís Antunes Pena
> http://luisantunespena.eu
> 
> Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here


Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

Date2021-12-17 09:53
FromVictor Lazzarini
SubjectRe: [Csnd] [EXTERNAL] [Csnd] Error pvanal not found
package updated in the 6.12.2 release.
========================
Prof. Victor Lazzarini
Maynooth University
Ireland

> On 17 Dec 2021, at 09:37, Victor Lazzarini  wrote:
> 
> It should be OPCODE6DIR64, but you would not get such warnings if that was not set etc. They are issued if Csound tries to load them but can’t.
> So that’s generally because of missing dependencies to these libraries. 
> 
> - In the case of librtjack it’s because you don’t have jack installed, that’s fine.
> - libvirtual depends on FLTK and that is not found either, because we’re not shipping it on MacOS (and in fact libvirtual should not be built anymore, it’s a mistake that it is there)
> - llibfluidsynth.dylib also depends on Jack being installed so that’s why it’s not loading
> 
> Ah, I see, there’s a link name error in libstdutil that’s causing that problem. It is point to the wrong libsndfile.
> Here’s the command to fix this
> 
> sudo install_name_tool -change libsndfile.1.dylib @loader_path/../../../../libs/libsndfile.1.dylib /Library/Frameworks/CsoundLib64.framework/Resources/Opcodes64/libstdutil.dylib
> 
> I’ll try and replace the installer to fix this.
> ========================
> Prof. Victor Lazzarini
> Maynooth University
> Ireland
> 
>> On 17 Dec 2021, at 08:52, luis antunes pena  wrote:
>> 
>> WARNINGThis email originated from outside of Maynooth University's Mail System. Do not reply, click links or open attachments unless you recognise the sender and know the content is safe.
>> Dera all,
>> 
>> I'm getting an error while using the utility pvanal. It seams like csound can't find the pvanal utility. I can see that both pvanal and the library libstdutil.dylib are there in /usr/local/bin/pvanal and /Library/Frameworks/CsoundLib64.framework/Versions/6.0/Resources/Opcodes64/librtjack.dylib 
>> 
>> I tried in both mac os 11.6 and 10.12.6 with the same result. Is csound missing some environment variable to know where pvanal is? Any ideas what the problenm could be?
>> 
>> You can see the output of the terminal bellow.
>> 
>> Best,
>> 
>> Luís
>> 
>> 
>> csound -U pvanal -n 1024 -c 1 -w 4 /Users/luisantunespena/Sync/arbeit/komp/2020-EinHauchVonWut/csnd/ssdir/EinHauchVonWut_Experiments01-1.aif /Users/luisantunespena/Sync/arbeit/komp/2020-EinHauchVonWut/csnd/sadir/EinHauchVonWut_Experiments01-1.pvx
>> 0dBFS level = 32768.0
>> --Csound version 6.16 (double samples) Aug 23 2021
>> [commit: c7601d11f029f24590917d4a1797e247eafdef21]
>> libsndfile-1.0.28
>> Error: utility 'pvanal' not found
>> WARNING: could not open library '/Library/Frameworks/CsoundLib64.framework/Versions/6.0/Resources/Opcodes64/libfluidOpcodes.dylib' (-1)
>> WARNING: could not open library '/Library/Frameworks/CsoundLib64.framework/Versions/6.0/Resources/Opcodes64/libstdutil.dylib' (-1)
>> WARNING: could not open library '/Library/Frameworks/CsoundLib64.framework/Versions/6.0/Resources/Opcodes64/libvirtual.dylib' (-1)
>> WARNING: could not open library '/Library/Frameworks/CsoundLib64.framework/Versions/6.0/Resources/Opcodes64/librtjack.dylib' (-1)
>> end of score.           overall amps:      0.0
>>       overall samples out of range:        0
>> 0 errors in performance
>> Elapsed time at end of performance: real: 0.001s, CPU: 0.001s
>> 
>> 
>> 
>> Luís Antunes Pena
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fluisantunespena.eu%2F&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7Cfcb66613e42b440cecdd08d9c140d54a%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637753306470451574%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=Ex%2F1vBhBXt0YvnmX%2FZ33Hepf1ZlIFeZrbNd%2BlUdPoRs%3D&reserved=0
>> 
>> Csound mailing list Csound@listserv.heanet.ie https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Flistserv.heanet.ie%2Fcgi-bin%2Fwa%3FA0%3DCSOUND&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7Cfcb66613e42b440cecdd08d9c140d54a%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637753306470451574%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=FZmIGIIll5Gy%2BQLIJ%2BtXIS6iCZu4D0dXO%2BT9wXFaSXY%3D&reserved=0 Send bugs reports to https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fcsound%2Fcsound%2Fissues&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7Cfcb66613e42b440cecdd08d9c140d54a%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637753306470451574%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=VVGZqoFNkXPWWZq2ANl%2B3Pu1KYTnJDDdZNMwZFUbMPI%3D&reserved=0 Discussions of bugs and features can be posted here
> 
> 
> Csound mailing list
> Csound@listserv.heanet.ie
> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Flistserv.heanet.ie%2Fcgi-bin%2Fwa%3FA0%3DCSOUND&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7Cfcb66613e42b440cecdd08d9c140d54a%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637753306470461563%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=w4AAroUKlqDzU3luGs9vLG4jNMu3R4w0361aBX391%2B4%3D&reserved=0
> Send bugs reports to
>        https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fcsound%2Fcsound%2Fissues&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7Cfcb66613e42b440cecdd08d9c140d54a%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637753306470461563%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=xkohIEClJwVvpXHxXrlfAzSb9qc2%2B6VBxtRQLMgMET0%3D&reserved=0
> Discussions of bugs and features can be posted here


Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

Date2021-12-17 12:10
Fromluis antunes pena
SubjectRe: [Csnd] [The Csound Mailinglist] [Csnd] Error pvanal not found
Victor, that's it. It worked immediately. Thank you very much!
Luís

On 17.12.21 10:50, Victor Lazzarini via The Csound Community wrote:
Victor_Lazzarini
December 17

It should be OPCODE6DIR64, but you would not get such warnings if that was not set etc. They are issued if Csound tries to load them but can’t.
So that’s generally because of missing dependencies to these libraries.

- In the case of librtjack it’s because you don’t have jack installed, that’s fine.
- libvirtual depends on FLTK and that is not found either, because we’re not shipping it on MacOS (and in fact libvirtual should not be built anymore, it’s a mistake that it is there)
- llibfluidsynth.dylib also depends on Jack being installed so that’s why it’s not loading

Ah, I see, there’s a link name error in libstdutil that’s causing that problem. It is point to the wrong libsndfile.
Here’s the command to fix this

sudo install_name_tool -change libsndfile.1.dylib @loader_path/../../../../libs/libsndfile.1.dylib /Library/Frameworks/CsoundLib64.framework/Resources/Opcodes64/libstdutil.dylib

I’ll try and replace the installer to fix this.


Visit Topic or reply to this email to respond.

You are receiving this because you enabled mailing list mode.

To unsubscribe from these emails, click here.

                                                           


Luís Antunes Pena
http://luisantunespena.eu