Is there any doc for usage of mojo or .so dlopen for C++.
Thanks.
Is there any doc for usage of mojo or .so dlopen for C++.
Thanks.
Mojo calling into C++ needs to use a C ABI in C++. C++ calling into Mojo should use @export(ABI="C") on the Mojo function on top of the function and make sure everything is C ABI compatible.
Are there any doc pages for @export(ABI=āCā). Thanks.