You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compiling code in C++ that uses bullet works fine, but using the compiled library directly from JS is very hard.
Generating a JS API from the low-level LLVM constructs is hard.
Not all the necessary stuff is even compiled - looks like the compiler decides not to compile classes etc. it doesn't need. Also, we have none of the enumerations and #define constants that are useful in C++ code.
To use all LLVM optimizatons and DFE, we need a complete binary, not just a library, or else the optimizer will remove even more stuff we might want.
We need some new tools and ideas here. Or maybe we should just manually write the API in JS. This would give the best results, but take some initial effort.
The text was updated successfully, but these errors were encountered:
Compiling code in C++ that uses bullet works fine, but using the compiled library directly from JS is very hard.
We need some new tools and ideas here. Or maybe we should just manually write the API in JS. This would give the best results, but take some initial effort.
The text was updated successfully, but these errors were encountered: