acids-ircam / rave_vst

Other
184 stars 28 forks source link

Opening binary in terminal #8

Closed deccolquitt closed 2 years ago

deccolquitt commented 2 years ago

I am trying to open the binary in the terminal in order to get report logs on crashes. After using chmod u+x to solve the permission problem, my command appears to go through, but nothing happens. Any help would be greatly appreciated as I have run out of ideas as to how to solve this and am not massively experienced.

(base) declancolquitt@iMac ~ % /Users/declancolquitt/rave_vst/build/rave-vst_artefacts/Release/Standalone/RAVE.app
zsh: permission denied: /Users/declancolquitt/rave_vst/build/rave-vst_artefacts/Release/Standalone/RAVE.app

(base) declancolquitt@iMac ~ % chmod u+x /Users/declancolquitt/rave_vst/build/rave-vst_artefacts/Release/Standalone/RAVE.app

(base) declancolquitt@iMac ~ % 
ZodiacFRA commented 2 years ago

what does ./Users/declancolquitt/rave_vst/build/rave-vst_artefacts/Release/Standalone/RAVE.app do?

deccolquitt commented 2 years ago

zsh: no such file or directory: ./Users/declancolquitt/rave_vst/build/rave-vst_artefacts/Release/Standalone/RAVE.app

caillonantoine commented 2 years ago

You are not launching the binary file but a folder containing the binary file. You might want to try that

./build/rave-vst_artefacts/Release/Standalone/RAVE.app/Contents/MacOS/RAVE
deccolquitt commented 2 years ago

I have copied the file path directly from the RAVE.app itself though.

./build/rave-vst_artefacts/Release/Standalone/RAVE.app/Contents/MacOS/RAVE

returned

zsh: no such file or directory: ./build/rave-vst_artefacts/Release/Standalone/RAVE.app/Contents/MacOS/RAVE

ZodiacFRA commented 2 years ago

Use an absolute path, you're not executing it from the right folder