Pat Marion
Pat Marion
Yes this is a known issue, thanks for reporting. I can't remember if there is already an open issue. I have run into the exact problem when implementing a ros...
I think if you can also workaround the issue by doing this: ``` sub.setNotifyAllMessagesEnabled(True) ``` For very high frequency messages this may have performance issues, but most of the time...
I think a reasonable fix in `ddLCMSubscriber` would change `mLastMessage` from a `QByteArray` to a `QMap` and the function signature ` QByteArray getNextMessage(int timeout)` would be modified to `QByteArray getNextMessage(int...
That's related but not the same as what you reported. I guess it's never been posted in Github issues. I found where it was previously encountered though, and maybe we...
oh, i thought it was zeromq that was preventing the exit, but it looks like it is any python thread. hmm. there is this signal you can catch: ``` def...
Ok good. I still don't understand why it doesn't work. It seems like when the Qt event loop exits the Python thread loses it's ability to run. Code on the...
Why do you want to use libstdc++ on your compiled libraries? Since libc++ is the default now, it's possible you may run into other compatibility issues. Maybe just let everything...
I assume macports and homebrew patch vtk-5.10, or do something special to ensure configuration is correct, since Apple changes compilers with every OS update but vtk-5.10 source was released several...
Thanks. So I can see that on libctkPythonConsole.dylib (which is just a library compiled along with Director) there are these libs: ``` /opt/local/lib/libgcc/libstdc++.6.dylib /opt/local/lib/libgcc/libgcc_s.1.dylib ``` Looks like those are from...
Thanks for the updates.