-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Frame tests for loading shared objects for the emscripten build #548
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy made some suggestions
|
||
// 6. Optionally, cast and call to test actual function (should return 0) | ||
using RetZeroFn = int (*)(); | ||
RetZeroFn Fn = reinterpret_cast<RetZeroFn>(Addr); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast]
RetZeroFn Fn = reinterpret_cast<RetZeroFn>(Addr);
^
|
||
// 6. Optionally, cast and call to test actual function (should return 0) | ||
using RetZeroFn = int (*)(); | ||
RetZeroFn Fn = reinterpret_cast<RetZeroFn>(Addr); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: use auto when initializing with a cast to avoid duplicating the type name [modernize-use-auto]
RetZeroFn Fn = reinterpret_cast<RetZeroFn>(Addr); | |
auto Fn = reinterpret_cast<RetZeroFn>(Addr); |
@anutosh491 Just a couple of questions. Once this PR is ready will we be able to run the DynamicLibraryManagerTest Sanity test? Currently its skipped. Does this PR have any relation to this PR? #308 |
Explaining the use-case/roadmap here Symengine a Computer Algebra System with 1.2k stars wants us to host a link in their Readme so that users there can try it as a REPL in the browser. Check this Steps to achieve this
Included when we build using these definitions Was able to get this working locally !!! This involves only having symengine in our wasm environment and no explicit linking/loading from our side. Any symengine header included would also load libsymengine.so . So to provide the link to symengine, we would just ask the maintainers to fork the template library (https://github.com/jupyterlite/xeus-lite-demo) under their symengine org (and probably ask them to name it Symengine/xeus-cpp-symengine-demo or whatever) . Here in the template they would just need to update the environment and add symengine to get the above working. |
Absolutely. This PR fixes that. EDIT: Actually to be fair not the Sanity test. The sanity test is not catered to the emscripten build.But we shall be able to add a custom test suitable for the emscripten build just like what I added (look at the test I added in the pr) The sanity test has
Things like llvm::sys etc would not work for emscripten. Also there is no real concept of search paths in wasm ( we know where the preload the shared lib in the MEMFS so we don't have to search for it )
The library autoloader PR is not focusing on loading dynamic libs while building against emscripten (or basically for our wasm use case) as per my knowledge. So the idea might have some relation but the use case is different. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #548 +/- ##
=======================================
Coverage 75.94% 75.94%
=======================================
Files 9 9
Lines 3646 3646
=======================================
Hits 2769 2769
Misses 877 877
🚀 New features to boost your workflow:
|
Description
Now that llvm/llvm-project#133037 has been merged, we should be able to test out loading shared libraries for the emscripten build.
Type of change
Please tick all options which are relevant.
Testing
Please describe the test(s) that you added and ran to verify your changes.
Checklist