faust icon indicating copy to clipboard operation
faust copied to clipboard

Error: unable to open CAQt app due to hslider ranges

Open dariosanfilippo opened this issue 4 years ago • 2 comments

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

dariosanfilippo avatar Mar 05 '21 00:03 dariosanfilippo

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.

dariosanfilippo avatar Mar 05 '21 17:03 dariosanfilippo

@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

dariosanfilippo avatar Mar 05 '21 17:03 dariosanfilippo