faust
faust copied to clipboard
Error: unable to open CAQt app due to hslider ranges
I get the following error when I try to open a CAQt app after adjusting the ranges of some hsliders:
The application cannot be opened for an unexpected reason, error=Error Domain=NSOSStatusErrorDomain Code=-10827 "kLSNoExecutableErr: The executable is missing" UserInfo={_LSLine=3665, _LSFunction=_LSOpenStuffCallLocal}
I'm on OSX Big Sur, M1 chip. Faust 2.30.13.
Possibly, solving issues #547 and #548 might solve this too.
Ciao, Dario
I now get the same error when changing my code from this:
process(x1, x2, x3) = hindmarshrose(limit, a, b, c, dt, input(x1), input(x2), input(x3)) :> _ <: /(3) , /(3);
to this:
process(x1, x2, x3) = hindmarshrose(limit, a, b, c, dt, input(x1), input(x2), input(x3));
It doesn't appear to be related to the sliders in this case.
@sletz
It is some Bug Sur issue. Not very elegant but you could fix it by making Faust run the codesign command twice:
codesign --sign - --deep --force --verbose=4 application.app.
Dario