Hi all,Qt for Nacl worked like a charm until this morning, before canary got updated to 25.0.1323.1. Chrome displays the top bar "A plugin [path to nmf] is not responding."One can repro the issue by going to this page http://pencil.qtapps.net/ with the mentioned version.Any idea on what's wrong with this new version? I couldn't find the changeset..Cheers,Alexandre--
You received this message because you are subscribed to the Google Groups "Native-Client-Discuss" group.
To view this discussion on the web visit https://groups.google.com/d/msg/native-client-discuss/-/MKEpQqjIVcQJ.
To post to this group, send email to native-cli...@googlegroups.com.
To unsubscribe from this group, send email to native-client-di...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/native-client-discuss?hl=en.
--
You received this message because you are subscribed to the Google Groups "Native-Client-Discuss" group.
To view this discussion on the web visit https://groups.google.com/d/msg/native-client-discuss/-/9X47Ka86OKsJ.
Brad
To unsubscribe from this group, send email to native-client-discuss+unsub...@googlegroups.com.
To unsubscribe from this group, send email to native-client-discuss+unsub...@googlegroups.com.
The thing is that, as far as i known, qt nacl is developed against pepper 19 (last time i tried building with pepper 23 i got some opengl-related errors..). If i'm not mistaken, pepper 19 doesn't contain PPB_Instance;1.1, right?
On Monday, November 12, 2012 9:18:48 PM UTC+1, Bill Budge wrote:Actually, what I see when I run the app is that PPP_Instance_1_1 isn't found. We should fall back to 1_0 but perhaps that is broken. I'll check.I don't know how hard it would be to implement 1_1 in your app but perhaps that would be enough to get things working.
On Monday, November 12, 2012 11:37:21 AM UTC-8, Bill Budge wrote:I suspect that your app is using 'Dev' interfaces which haven't been proxied yet. In the meantime you can use the --enable-nacl-srpc-proxy to keep developing.I will try to get the missing 'Dev' interfaces in today.
On Monday, November 12, 2012 2:41:36 AM UTC-8, Alexandre Barreira wrote:Hi all,Qt for Nacl worked like a charm until this morning, before canary got updated to 25.0.1323.1. Chrome displays the top bar "A plugin [path to nmf] is not responding."One can repro the issue by going to this page http://pencil.qtapps.net/ with the mentioned version.Any idea on what's wrong with this new version? I couldn't find the changeset..Cheers,Alexandre
--
You received this message because you are subscribed to the Google Groups "Native-Client-Discuss" group.
To view this discussion on the web visit https://groups.google.com/d/msg/native-client-discuss/-/ryJWdDik_UsJ.
To unsubscribe from this group, send email to native-client-di...@googlegroups.com.
To unsubscribe from this group, send email to native-client-discuss+unsub...@googlegroups.com.
To unsubscribe from this group, send email to native-client-discuss+unsub...@googlegroups.com.
To unsubscribe from this group, send email to native-client-discuss+unsubscri...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Native-Client-Discuss" group.
To view this discussion on the web visit https://groups.google.com/d/msg/native-client-discuss/-/ryJWdDik_UsJ.
To unsubscribe from this group, send email to native-client-di...@googlegroups.com.
More debugging and we found the problem.The app is trying to load parts of the old SRPC proxy (libppruntime.so, libsrpc.so, etc.) which won't work with the new proxy. I'm not sure how this works with the old proxy but I can see these files listed in your manifest (.nmf) file and the loads fail.
--
You received this message because you are subscribed to the Google Groups "Native-Client-Discuss" group.
To view this discussion on the web visit https://groups.google.com/d/msg/native-client-discuss/-/a-HDMnjlPsAJ.
To unsubscribe from this group, send email to native-client-di...@googlegroups.com.
Hi, I've looked into this a bit and been able to reduce the number of .so's Qt links against. (Looks like the libsrpc.so linking was purely accidental.)I'm left with this set: -lppruntime -lppapi -lppapi_cpp
The reason for requiring libppruntime is that Qt implements main() and calls PpapiPluginMain() during initialisation. Is it possible to use this pattern with the new proxy?