Re: [v8-users] Re: WebAssembly.instantiate didn't call then nor catch in v8 embedded

2020-02-21 Thread 'Clemens Backes' via v8-users
Also note this other discussion: https://groups.google.com/g/v8-users/c/lRe7WrCkHCE/m/NmMfpDZ-DAAJ On Fri, Feb 21, 2020 at 12:01 PM Darin Dimitrov wrote: > I had the same problem in my Android project and used a workaround. I > replaced the global.WebAssembly object with a Proxy and intercept

[v8-users] Re: WebAssembly.instantiate didn't call then nor catch in v8 embedded

2020-02-21 Thread Darin Dimitrov
I had the same problem in my Android project and used a workaround. I replaced the global.WebAssembly object with a Proxy and intercept the "compile" and "instantiate" method calls. When this method is called I start a new background thread which is polling the main looper to pump messages and

[v8-users] Re: WebAssembly.instantiate didn't call then nor catch in v8 embedded

2019-12-31 Thread aimaomao wo
I also encountered the same problem in v6.5 version, did you find the answer 在 2019年6月3日星期一 UTC+8下午11:29:36,Jian Guo写道: > > I tried to ship WebAssembly feature in v8 7.2 for my Android Project. I > have successfully imported v8 as a static library. But I came across an > issue that WebAssembly