On Saturday, January 11, 2014 2:49:16 AM UTC+1, David Li wrote: > > > @F.B. have you managed to compile Python using Emscripten? I tried but > could not get the interpreter working, it just hung/crashed if I tried to > bundle the standard library and complained about site.py otherwise. > > No, I didn't.
By the way, what about trying another way, namely: - translate sympy to C++ using Nuitka - compile the C++ code generated by Nuitka to javascript using clang/emscripten Nuitka's aim is to be able to compile any python program to C++ and then to machine code. Nuitka's generated C++ code is independent of CPython, and thus has less boilerplate than running sympy inside a browser. I do not have much time, but if anyone is interested, that could be a nice experiment. -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sympy. For more options, visit https://groups.google.com/groups/opt_out.
