-
Notifications
You must be signed in to change notification settings - Fork 33
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
Specify needed shared libs in wasm kernel spec #221
Merged
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
308d50b
Add post.js to include missing Emscripten APIs
anutosh491 72ac4b4
Specify needed shared libs in wasm kernel spec
anutosh491 ab3de9d
Remove unnecessary stuff from wasm kernel
anutosh491 cfd76ca
update deploy pages
anutosh491 a51b713
Merge branch 'main' into wasm_kernel
anutosh491 b9db408
Update deploy-github-page.yml
anutosh491 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -276,8 +276,6 @@ jobs: | |
micromamba activate xeus-lite-host | ||
python -m pip install jupyterlite-xeus | ||
jupyter lite build --XeusAddon.prefix=${{ env.PREFIX }} | ||
cp $PREFIX/bin/xcpp.data _output/extensions/@jupyterlite/xeus/static | ||
cp $PREFIX/lib/libclangCppInterOp.so _output/extensions/@jupyterlite/xeus/static | ||
Comment on lines
-279
to
-280
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Happy to see this being removed :D |
||
|
||
- name: Setup tmate session | ||
if: ${{ failure() && runner.debug }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"display_name": "C++20", | ||
"argv": [ | ||
"@XEUS_CPP_KERNELSPEC_PATH@xcpp", | ||
"-f", | ||
"{connection_file}", | ||
"-std=c++20" | ||
], | ||
"language": "cpp", | ||
"metadata": { | ||
"debugger": false, | ||
"shared": { | ||
"libclangCppInterOp.so": "lib/libclangCppInterOp.so" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👌🏽 |
||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
if (!('wasmTable' in Module)) { | ||
Module.wasmTable = wasmTable | ||
} | ||
|
||
Module.FS = FS | ||
Module.PATH = PATH | ||
Module.LDSO = LDSO | ||
Module.getDylinkMetadata = getDylinkMetadata | ||
Module.loadDynamicLibrary = loadDynamicLibrary | ||
|
||
Module.UTF8ToString = UTF8ToString; | ||
Module.ERRNO_CODES = ERRNO_CODES; |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Is notebook really required?
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.
Not really but I think was added earlier by a contributor as an alternative to lab, hence the change is present there. Keeping it for now and can be removed subsequently if not adding value.
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.
Installing notebook will have no impact on this concerning JupyterLite.
It's the
jupyter lite build --apps notebook --apps lab
which impacts which kinds of UIs are installed.JupyterLite already defaults to providing the notebook UI actually, you'll only need to point to a different URL. e.g. for xeus-r you can go on https://jupyter-xeus.github.io/xeus-r/tree instead of https://jupyter-xeus.github.io/xeus-r/lab
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.
Ohh okay wow, I didn't know we could frame the url like this. Getting rid of it !