-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] Build FLTK for ZynAddSubFX support #1
Conversation
Started test build 3086 |
Build 3086 successful
|
You still have this marked as [WIP]. Anything you'd like to add? It builds properly and the ZynAddSubFX is there. |
@hfiguiere Did you get some terminal output like this after clicking
|
yes I'm getting these. |
As you can see in https://github.com/LMMS/lmms/blob/ec64de072352c17a025e073114aaaea6ba773822/src/core/RemotePlugin.cpp#L102-L104, LMMS uses local sockets on the temporary directory. I suspect there were some permission issues with the sockets. m_socketFile = QDir::tempPath() + QDir::separator() +
QUuid::createUuid().toString();
const char * path = m_socketFile.toUtf8().constData(); Edit: The assumption was correct. |
Started test build 3415 |
Build 3415 failed |
Started test build 3416 |
Build 3416 successful
|
still doesn't work here. |
It fails because
|
Solution is to add |
Okay. BTW, why did you set |
Not setting That is also a reasonable solution. |
Cherry-picked the fltk patch to master, added the proper change for plugin socket to work and rolled all out for the 1.2.0 release that should be building right now. Thanks you so much. |
Per LMMS/lmms#4109 (comment)